pub trait HasherFn<C, T, E>where C: ?Sized, T: ?Sized,{ // Required method fn hash(&self, cx: &mut C, key: &T) -> Result<u64, E>; }
Trait used to implement custom hash implementations which are not solely based on traits.