pub trait Pow: Sized {
    fn pow(self, exp: u32) -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors