pub trait One { type Boolean: BooleanTrait; // Required methods fn one() -> Self where Self: Sized; fn is_one(&self) -> Self::Boolean; }
Representation of the one value.
Returns a new one constant.
Returns true if self is one.
true
self