Trait core::num::Zero
[−]
[src]
pub trait Zero: Sized { fn zero() -> Self; }
Types that have a "zero" value.
This trait is intended for use in conjunction with Add
, as an identity:
x + T::zero() == x
.