pub trait SecretIntegerCopy: SecretInteger + Copy {
    type PublicVersionCopy: PublicIntegerCopy;

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

Required Associated Types

Required Methods

Implementors