Skip to main content

IBitHashMethods

Trait IBitHashMethods 

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

Source

fn ctor(self, shift: impl Into<i32>)

.ctor(i32) overload

Source

fn dispose(self)

Dispose() overload

Source

fn add(self, name: impl Into<Il2CppString>)

Add(::unity::Il2CppString) overload

Source

fn add_2(self, conditions: impl Into<Array<Il2CppString>>)

Add(::unity::Array<::unity::Il2CppString>) overload

Source

fn clear(self)

Clear() overload

Source

fn test(self, key: impl Into<i32>) -> bool

Test(i32) overload

Source

fn test_2(self, key1: impl Into<i32>, key2: impl Into<i32>) -> bool

Test(i32, i32) overload

Source

fn test_3( self, key1: impl Into<i32>, key2: impl Into<i32>, key3: impl Into<i32>, ) -> bool

Test(i32, i32, i32) overload

Source

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

Source

fn test_5(self, keys: impl Into<Array<i32>>) -> bool

Test(::unity::Array<i32>) overload

Source

fn test_6(self, keys: impl Into<List_1<i32>>) -> bool

Test(crate::system::collections::generic::list_1::List_1<i32>) overload

Source

fn not(self, key: impl Into<i32>) -> bool

Not(i32) overload

Source

fn not_2(self, keys: impl Into<Array<i32>>) -> bool

Not(::unity::Array<i32>) overload

Source

fn not_3(self, keys: impl Into<List_1<i32>>) -> bool

Not(crate::system::collections::generic::list_1::List_1<i32>) overload

Source

fn test_7(self, key: impl Into<Il2CppString>) -> bool

Test(::unity::Il2CppString) overload

Source

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§

Source§

impl<__T: IBitHash> IBitHashMethods for __T

Available on crate feature app-bithash only.