pub trait IBitHashMethods: IBitHash {
Show 16 methods
// Provided methods
fn ctor(self, shift: impl Into<i32>) { ... }
fn dispose(self) { ... }
fn add(self, name: impl Into<Il2CppString>) { ... }
fn add_2(self, conditions: impl Into<Array<Il2CppString>>) { ... }
fn clear(self) { ... }
fn test(self, key: impl Into<i32>) -> bool { ... }
fn test_2(self, key1: impl Into<i32>, key2: impl Into<i32>) -> bool { ... }
fn test_3(
self,
key1: impl Into<i32>,
key2: impl Into<i32>,
key3: impl Into<i32>,
) -> bool { ... }
fn test_4(
self,
key1: impl Into<i32>,
key2: impl Into<i32>,
key3: impl Into<i32>,
key4: impl Into<i32>,
) -> bool { ... }
fn test_5(self, keys: impl Into<Array<i32>>) -> bool { ... }
fn test_6(self, keys: impl Into<List_1<i32>>) -> bool { ... }
fn not(self, key: impl Into<i32>) -> bool { ... }
fn not_2(self, keys: impl Into<Array<i32>>) -> bool { ... }
fn not_3(self, keys: impl Into<List_1<i32>>) -> bool { ... }
fn test_7(self, key: impl Into<Il2CppString>) -> bool { ... }
fn get_names(self) -> List_1<Il2CppString> { ... }
}Provided Methods§
Sourcefn add(self, name: impl Into<Il2CppString>)
fn add(self, name: impl Into<Il2CppString>)
Add(::unity::Il2CppString) overload
Sourcefn add_2(self, conditions: impl Into<Array<Il2CppString>>)
fn add_2(self, conditions: impl Into<Array<Il2CppString>>)
Add(::unity::Array<::unity::Il2CppString>) overload
Sourcefn test_3(
self,
key1: impl Into<i32>,
key2: impl Into<i32>,
key3: impl Into<i32>,
) -> bool
fn test_3( self, key1: impl Into<i32>, key2: impl Into<i32>, key3: impl Into<i32>, ) -> bool
Test(i32, i32, i32) overload
Sourcefn test_4(
self,
key1: impl Into<i32>,
key2: impl Into<i32>,
key3: impl Into<i32>,
key4: impl Into<i32>,
) -> bool
fn test_4( self, key1: impl Into<i32>, key2: impl Into<i32>, key3: impl Into<i32>, key4: impl Into<i32>, ) -> bool
Test(i32, i32, i32, i32) overload
Sourcefn test_6(self, keys: impl Into<List_1<i32>>) -> bool
fn test_6(self, keys: impl Into<List_1<i32>>) -> bool
Test(crate::system::collections::generic::list_1::List_1<i32>) overload
Sourcefn not_3(self, keys: impl Into<List_1<i32>>) -> bool
fn not_3(self, keys: impl Into<List_1<i32>>) -> bool
Not(crate::system::collections::generic::list_1::List_1<i32>) overload
Sourcefn test_7(self, key: impl Into<Il2CppString>) -> bool
fn test_7(self, key: impl Into<Il2CppString>) -> bool
Test(::unity::Il2CppString) overload
Sourcefn get_names(self) -> List_1<Il2CppString>
fn get_names(self) -> List_1<Il2CppString>
get_Names() 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: IBitHash> IBitHashMethods for __T
Available on crate feature
app-bithash only.