pub trait SecretIntegerCopy: SecretInteger + Copy {
type PublicVersionCopy: PublicIntegerCopy;
// Required method
fn classify(x: Self::PublicVersionCopy) -> Self;
}
Required Associated Types§
Required Methods§
fn classify(x: Self::PublicVersionCopy) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.