pub trait Power { // Required method fn epow(self, n: Self) -> Self; }
Computes power for given value and power