pub trait NullableOrd {
    type Output;

    // Required methods
    fn lt(&self, rhs: &Self) -> Self::Output;
    fn gt(&self, rhs: &Self) -> Self::Output;
    fn lteq(&self, rhs: &Self) -> Self::Output;
    fn gteq(&self, rhs: &Self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn lt(&self, rhs: &Self) -> Self::Output

source

fn gt(&self, rhs: &Self) -> Self::Output

source

fn lteq(&self, rhs: &Self) -> Self::Output

source

fn gteq(&self, rhs: &Self) -> Self::Output

Implementors§