pub trait IInternalStringComparerMethods: IInternalStringComparer {
// Provided methods
fn get_hash_code(self, obj: impl Into<Il2CppString>) -> i32 { ... }
fn equals(
self,
x: impl Into<Il2CppString>,
y: impl Into<Il2CppString>,
) -> bool { ... }
fn index_of(
self,
array: impl Into<Array<Il2CppString>>,
value: impl Into<Il2CppString>,
start_index: impl Into<i32>,
count: impl Into<i32>,
) -> i32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_hash_code(self, obj: impl Into<Il2CppString>) -> i32
fn get_hash_code(self, obj: impl Into<Il2CppString>) -> i32
GetHashCode(::unity::Il2CppString) overload
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 index_of(
self,
array: impl Into<Array<Il2CppString>>,
value: impl Into<Il2CppString>,
start_index: impl Into<i32>,
count: impl Into<i32>,
) -> i32
fn index_of( self, array: impl Into<Array<Il2CppString>>, value: impl Into<Il2CppString>, start_index: impl Into<i32>, count: impl Into<i32>, ) -> i32
IndexOf(::unity::Array<::unity::Il2CppString>, ::unity::Il2CppString, i32, i32) 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: IInternalStringComparer> IInternalStringComparerMethods for __T
Available on crate feature
system-collections-generic-internalstringcomparer only.