pub trait Zero { const ZERO: Self; // Required method fn is_zero(&self) -> bool; }
A type that can represent a zero-value.
The zero value for this type.
Returns true if self represents 0.
self
0