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

Required Methods

Implementations on Foreign Types

Implementors