Trait sc_network::multiaddr::multihash::typenum::type_operators::IsGreaterOrEqual[]

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

The type representing either True or False

Required methods

Method returning True or False.

Implementors