pub trait SaturatingPow<Rhs = Self> {
    fn saturating_pow(self, rhs: Rhs) -> Self;
}

Required Methods§

Implementors§