pub trait HasherFn<C: ?Sized, T: ?Sized, E> { // 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.