pub trait IIEqualityComparerMethods: IIEqualityComparer {
// Provided methods
fn equals(self, x: impl Into<Object>, y: impl Into<Object>) -> bool { ... }
fn get_hash_code(self, obj: impl Into<Object>) -> i32 { ... }
}Provided Methods§
Sourcefn equals(self, x: impl Into<Object>, y: impl Into<Object>) -> bool
fn equals(self, x: impl Into<Object>, y: impl Into<Object>) -> bool
Equals(crate::system::object::Object, crate::system::object::Object) overload
Sourcefn get_hash_code(self, obj: impl Into<Object>) -> i32
fn get_hash_code(self, obj: impl Into<Object>) -> i32
GetHashCode(crate::system::object::Object) overload
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.
Implementors§
impl<__T: IIEqualityComparer> IIEqualityComparerMethods for __T
Available on crate feature
system-collections-iequalitycomparer only.