pub trait INameValueCollection: INameObjectCollectionBase {
// Provided methods
fn all(self) -> Array<Il2CppString> { ... }
fn set_all(self, value: Array<Il2CppString>) { ... }
fn all_keys(self) -> Array<Il2CppString> { ... }
fn set_all_keys(self, value: Array<Il2CppString>) { ... }
}Provided Methods§
fn all(self) -> Array<Il2CppString>
fn set_all(self, value: Array<Il2CppString>)
fn all_keys(self) -> Array<Il2CppString>
fn set_all_keys(self, value: Array<Il2CppString>)
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.