Trait Zero
pub trait Zero: Sized + ConstantTimeEq {
const ZERO: Self;
// Provided method
fn is_zero(&self) -> Choice { ... }
}Expand description
Zero values.
Required Associated Constants§
const ZERO: Self
const ZERO: Self
The value 0.
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.