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§
fn clear(self)where
Self: Sized,
fn get_public_names(self) -> Array<Il2CppString>where
Self: Sized,
fn get_key(self, index: i32) -> Il2CppStringwhere
Self: Sized,
fn get_index(self, key: Il2CppString) -> i32where
Self: Sized,
fn get_index_from_hash(self, hash: i32) -> i32where
Self: Sized,
fn is_exist(self) -> boolwhere
Self: Sized,
fn is_exist_2(self, key: Il2CppString) -> boolwhere
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,
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.