pub trait IPhotographSelectDisposMenuItemMethods: IPhotographSelectDisposMenuItem {
// Provided methods
fn get_character_id(self) -> Il2CppString { ... }
fn get_is_mascot_area(self) -> bool { ... }
fn ctor(
self,
character_id: impl Into<Il2CppString>,
is_mascot_area: impl Into<bool>,
) { ... }
}Provided Methods§
Sourcefn get_character_id(self) -> Il2CppString
fn get_character_id(self) -> Il2CppString
get_CharacterID() overload
Sourcefn get_is_mascot_area(self) -> bool
fn get_is_mascot_area(self) -> bool
get_IsMascotArea() overload
Sourcefn ctor(
self,
character_id: impl Into<Il2CppString>,
is_mascot_area: impl Into<bool>,
)
fn ctor( self, character_id: impl Into<Il2CppString>, is_mascot_area: impl Into<bool>, )
.ctor(::unity::Il2CppString, bool) 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: IPhotographSelectDisposMenuItem> IPhotographSelectDisposMenuItemMethods for __T
Available on crate feature
app-photographselectdisposmenuitem only.