pub trait Zero {
// Required methods
fn zero() -> Self;
fn is_zero(&self) -> bool;
}Expand description
A trait pretty much similar to num_traits::Zero, but without the need of
implementing Add.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".