pub trait ConstZero {
const ZERO: Self;
}
Expand description
Helper trait to identify the zero value of a type at compile time.
ⓘ
use uom::ConstZero;
const ORIGIN: (Length, Length, Length) = (Length::ZERO, Length::ZERO, Length::ZERO);
Required Associated Constants§
Object Safety§
This trait is not object safe.