pub trait ZeroFlag<C: SWCurveConfig>:
Hash
+ Ord
+ Eq
+ Copy
+ Sync
+ Send
+ Sized
+ 'static {
const IS_ZERO: Self;
const IS_NOT_ZERO: Self;
// Required method
fn is_zero(point: &Affine<C>) -> bool;
// Provided method
fn zeroize(&mut self) { ... }
}Required Associated Constants§
const IS_ZERO: Self
const IS_NOT_ZERO: Self
Required Methods§
Provided Methods§
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.