pub trait PlanIdentity {
// Required methods
fn identity_eq(&self, other: &Self) -> bool;
fn identity_hash<H: Hasher>(&self, state: &mut H);
}Required Methods§
fn identity_eq(&self, other: &Self) -> bool
fn identity_hash<H: Hasher>(&self, state: &mut H)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".