pub trait IsZero { // Required method fn is_zero(&self) -> bool; }
Trait defining instance method is_zero() : bool that indicates whether the implementing type instance is numerically zero.
is_zero() : bool