pub trait Zero { type Boolean: BooleanTrait; // Required methods fn zero() -> Self where Self: Sized; fn is_zero(&self) -> Self::Boolean; }
Representation of the zero value.
Returns a new zero constant.
Returns true if self is zero.
true
self