pub trait OrdHashExt {
    // Provided methods
    fn neq_ord_hash(self, h: u64) -> NeqOrdHashWrapper<Self>
       where Self: Sized { ... }
    fn neq_ord_empty(self) -> NeqOrdEmptyHashWrapper<Self>
       where Self: Sized { ... }
}

Provided Methods§

source

fn neq_ord_hash(self, h: u64) -> NeqOrdHashWrapper<Self>
where Self: Sized,

source

fn neq_ord_empty(self) -> NeqOrdEmptyHashWrapper<Self>
where Self: Sized,

Implementors§

source§

impl<T: ?Sized> OrdHashExt for T