Trait HashExt

Source
pub trait HashExt {
    // Provided methods
    fn hash_value(self, h: u64) -> HashWrapper<Self>
       where Self: Sized { ... }
    fn hash_empty(self) -> EmptyHashWrapper<Self>
       where Self: Sized { ... }
}

Provided Methods§

Source

fn hash_value(self, h: u64) -> HashWrapper<Self>
where Self: Sized,

Source

fn hash_empty(self) -> EmptyHashWrapper<Self>
where Self: Sized,

Implementors§

Source§

impl<T: ?Sized> HashExt for T