pub trait CheckedPow: Sized {
    fn checked_pow(self, exp: u32) -> Option<Self>;
}

Required Methods

Implementations on Foreign Types

Implementors