Trait mem_cmp::MemOrd [] [src]

pub trait MemOrd<Rhs: ?Sized = Self>: MemEq<Rhs> {
    fn mem_cmp(&self, other: &Rhs) -> Ordering;
}

Trait for values whose bytes can be compared directly.

Required Methods

Returns an ordering between the memory of self and other.

Implementors