pub trait IStructDictionary_1<T0: ClassIdentity>: IObject {
// Provided methods
fn m_key_list(self) -> List_1<Il2CppString> { ... }
fn set_m_key_list(self, value: List_1<Il2CppString>) { ... }
fn m_index_key(self) -> Dictionary_2<Il2CppString, i32> { ... }
fn set_m_index_key(self, value: Dictionary_2<Il2CppString, i32>) { ... }
fn m_hash_key(self) -> Dictionary_2<i32, i32> { ... }
fn set_m_hash_key(self, value: Dictionary_2<i32, i32>) { ... }
}Provided Methods§
fn m_key_list(self) -> List_1<Il2CppString>
fn set_m_key_list(self, value: List_1<Il2CppString>)
fn m_index_key(self) -> Dictionary_2<Il2CppString, i32>
fn set_m_index_key(self, value: Dictionary_2<Il2CppString, i32>)
fn m_hash_key(self) -> Dictionary_2<i32, i32>
fn set_m_hash_key(self, value: Dictionary_2<i32, i32>)
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.