Trait heapless_bytes::IsGreaterOrEqual [−][src]
pub trait IsGreaterOrEqual<Rhs = Self> { type Output: Bit; fn is_greater_or_equal(self, rhs: Rhs) -> Self::Output; }
Expand description
A type operator that returns True
if Self >= Rhs
, otherwise returns False
.
Associated Types
Required methods
fn is_greater_or_equal(self, rhs: Rhs) -> Self::Output
[src]
fn is_greater_or_equal(self, rhs: Rhs) -> Self::Output
[src]Method returning True
or False
.
Implementors
impl<A, B> IsGreaterOrEqual<B> for A where
A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>,
[src]
impl<A, B> IsGreaterOrEqual<B> for A where
A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>,
[src]