pub trait MappedEq<T = Self>where
T: ?Sized,{
type BlankId;
// Required method
fn mapped_eq<'a, 'b, F>(&'a self, other: &T, f: F) -> bool
where F: Clone + Fn(&'a Self::BlankId) -> &'b Self::BlankId,
Self::BlankId: 'a + 'b;
}
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.