Skip to main content

IStructDictionary_1Methods

Trait IStructDictionary_1Methods 

Source
pub trait IStructDictionary_1Methods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn clear(self)
       where Self: Sized { ... }
    fn get_public_names(self) -> Array<Il2CppString>
       where Self: Sized { ... }
    fn get_key(self, index: i32) -> Il2CppString
       where Self: Sized { ... }
    fn get_index(self, key: Il2CppString) -> i32
       where Self: Sized { ... }
    fn get_index_from_hash(self, hash: i32) -> i32
       where Self: Sized { ... }
    fn is_exist(self) -> bool
       where Self: Sized { ... }
    fn is_exist_2(self, key: Il2CppString) -> bool
       where Self: Sized { ... }
    fn prefixless(key: Il2CppString) -> Il2CppString { ... }
    fn add(self, key: Il2CppString, index: i32)
       where Self: Sized { ... }
    fn add_2(self, key: Il2CppString, index: i32, hash: i32)
       where Self: Sized { ... }
    fn get_list(self) -> List_1<Il2CppString>
       where Self: Sized { ... }
    fn ctor(self)
       where Self: Sized { ... }
}

Provided Methods§

Source

fn clear(self)
where Self: Sized,

Source

fn get_public_names(self) -> Array<Il2CppString>
where Self: Sized,

Source

fn get_key(self, index: i32) -> Il2CppString
where Self: Sized,

Source

fn get_index(self, key: Il2CppString) -> i32
where Self: Sized,

Source

fn get_index_from_hash(self, hash: i32) -> i32
where Self: Sized,

Source

fn is_exist(self) -> bool
where Self: Sized,

Source

fn is_exist_2(self, key: Il2CppString) -> bool
where Self: Sized,

Source

fn prefixless(key: Il2CppString) -> Il2CppString

Source

fn add(self, key: Il2CppString, index: i32)
where Self: Sized,

Source

fn add_2(self, key: Il2CppString, index: i32, hash: i32)
where Self: Sized,

Source

fn get_list(self) -> List_1<Il2CppString>
where Self: Sized,

Source

fn ctor(self)
where Self: Sized,

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§