Trait r::object::VecPartialCmp

source ·
pub trait VecPartialCmp<Rhs> {
    type Output;

    // Required methods
    fn vec_gt(self, rhs: Rhs) -> Self::Output;
    fn vec_gte(self, rhs: Rhs) -> Self::Output;
    fn vec_lt(self, rhs: Rhs) -> Self::Output;
    fn vec_lte(self, rhs: Rhs) -> Self::Output;
    fn vec_eq(self, rhs: Rhs) -> Self::Output;
    fn vec_neq(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn vec_gt(self, rhs: Rhs) -> Self::Output

source

fn vec_gte(self, rhs: Rhs) -> Self::Output

source

fn vec_lt(self, rhs: Rhs) -> Self::Output

source

fn vec_lte(self, rhs: Rhs) -> Self::Output

source

fn vec_eq(self, rhs: Rhs) -> Self::Output

source

fn vec_neq(self, rhs: Rhs) -> Self::Output

Implementors§