pub trait SecretInteger: Integer {
    type PublicVersion: PublicInteger;

    fn classify(x: Self::PublicVersion) -> Self;
}

Required Associated Types

Required Methods

Implementors