pub trait Zero: ConstantTimeEq + Sized {
const ZERO: Self;
// Provided method
fn is_zero(&self) -> Choice { ... }
}Expand description
Zero values.
Required Associated Constants§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".