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);

Associated Constants

Constant representing the zero value.

Implementations on Foreign Types

Implementors