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