pub trait IBaseItemMethods: IBaseItem {
// Provided methods
fn get_dictionary_key(self) -> Il2CppString { ... }
fn set_dictionary_key(self, value: impl Into<Il2CppString>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn add_piece(self, obj: impl Into<Object>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_dictionary_key(self) -> Il2CppString
fn get_dictionary_key(self) -> Il2CppString
get_DictionaryKey() overload
Sourcefn set_dictionary_key(self, value: impl Into<Il2CppString>)
fn set_dictionary_key(self, value: impl Into<Il2CppString>)
set_DictionaryKey(::unity::Il2CppString) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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§
impl<__T: IBaseItem> IBaseItemMethods for __T
Available on crate feature
app-struct_object-baseitem only.