pub trait EqKey<A: ?Sized, B: ?Sized> {
// Required method
fn eq_key(&self, a: &A, b: &B) -> bool;
}Expand description
Test two borrowed keys for equality.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".