pub trait Zero: Sized {
    fn zero() -> Self;
    fn is_zero(&self) -> bool;
}

Required Methods

Implementors