Skip to main content

IInternalStringComparerMethods

Trait IInternalStringComparerMethods 

Source
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§

Source

fn get_hash_code(self, obj: impl Into<Il2CppString>) -> i32

GetHashCode(::unity::Il2CppString) overload

Source

fn equals(self, x: impl Into<Il2CppString>, y: impl Into<Il2CppString>) -> bool

Equals(::unity::Il2CppString, ::unity::Il2CppString) overload

Source

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

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IInternalStringComparer> IInternalStringComparerMethods for __T

Available on crate feature system-collections-generic-internalstringcomparer only.