pub trait ComparableElement {
// Required method
fn is_same_item(&self, other: &Self) -> bool;
}
Required Methods§
Sourcefn is_same_item(&self, other: &Self) -> bool
fn is_same_item(&self, other: &Self) -> bool
Checks if the current element is the same as the other element. Some implementations may only check a subset of fields. Such as Dependency only checking the group id and artifact id.
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.