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;
}