pub trait IIHashCodeProviderMethods: IIHashCodeProvider {
// Provided method
fn get_hash_code(self, obj: impl Into<Object>) -> i32 { ... }
}Provided Methods§
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: IIHashCodeProvider> IIHashCodeProviderMethods for __T
Available on crate feature
system-collections-ihashcodeprovider only.