pub trait INonRandomizedStringEqualityComparerMethods: INonRandomizedStringEqualityComparer {
// Provided methods
fn equals(
self,
x: impl Into<Il2CppString>,
y: impl Into<Il2CppString>,
) -> bool { ... }
fn get_hash_code(self, obj: impl Into<Il2CppString>) -> i32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn equals(self, x: impl Into<Il2CppString>, y: impl Into<Il2CppString>) -> bool
fn equals(self, x: impl Into<Il2CppString>, y: impl Into<Il2CppString>) -> bool
Equals(::unity::Il2CppString, ::unity::Il2CppString) overload
Sourcefn get_hash_code(self, obj: impl Into<Il2CppString>) -> i32
fn get_hash_code(self, obj: impl Into<Il2CppString>) -> i32
GetHashCode(::unity::Il2CppString) 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: INonRandomizedStringEqualityComparer> INonRandomizedStringEqualityComparerMethods for __T
Available on crate feature
system-collections-generic-nonrandomizedstringequalitycomparer only.