pub trait ConstZero: Zero {
    const ZERO: Self;
}
Expand description

Defines an associated constant representing the additive identity element for Self.

Required Associated Constants

The additive identity element of Self, 0.

Implementations on Foreign Types

Implementors