pub trait IsLess<Rhs = Self> { type Output: Bit; // Required method fn is_less(self, rhs: Rhs) -> Self::Output; }
A type operator that returns True if Self < Rhs, otherwise returns False.
True
Self < Rhs
False
The type representing either True or False
Method returning True or False.