Trait typenum::type_operators::IsGreaterOrEqual
source · pub trait IsGreaterOrEqual<Rhs = Self> {
type Output: Bit;
// Required method
fn is_greater_or_equal(self, rhs: Rhs) -> Self::Output;
}
Expand description
A type operator that returns True
if Self >= Rhs
, otherwise returns False
.
Required Associated Types§
Required Methods§
sourcefn is_greater_or_equal(self, rhs: Rhs) -> Self::Output
fn is_greater_or_equal(self, rhs: Rhs) -> Self::Output
Method returning True
or False
.