pub trait NodeEquality {
// Required method
fn is_same(&self, other: &Self) -> bool;
}Expand description
Defines the equality trait.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".