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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.