pub trait IsPseudoPrime: Integer + ToPrimitive + Clone + FromPrimitive + ModularReducePow + Shr<usize, Output = Self> + MulAssign + TrailingZeros + Modulus<Self> + Roots + RingCharacteristic<Type = CharacteristicZero> {
    fn is_pseudo_prime(&self) -> bool { ... }
}

Provided methods

Implementors