Skip to main content

IBaseItemMethods

Trait IBaseItemMethods 

Source
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§

Source

fn get_dictionary_key(self) -> Il2CppString

get_DictionaryKey() overload

Source

fn set_dictionary_key(self, value: impl Into<Il2CppString>)

set_DictionaryKey(::unity::Il2CppString) overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn add_piece(self, obj: impl Into<Object>)

AddPiece(crate::system::object::Object) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IBaseItem> IBaseItemMethods for __T

Available on crate feature app-struct_object-baseitem only.