pub trait IPhotographSelectCharacterMenuItemMethods: IPhotographSelectCharacterMenuItem {
// Provided methods
fn get_character_id(self) -> Il2CppString { ... }
fn get_is_current_character(self) -> bool { ... }
fn ctor(
self,
character_id: impl Into<Il2CppString>,
dispos_manager: impl Into<PhotographDisposManager>,
is_current_character: impl Into<bool>,
) { ... }
fn on_select(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn get_character_id(self) -> Il2CppString
fn get_character_id(self) -> Il2CppString
get_CharacterId() overload
Sourcefn get_is_current_character(self) -> bool
fn get_is_current_character(self) -> bool
get_IsCurrentCharacter() overload
Sourcefn ctor(
self,
character_id: impl Into<Il2CppString>,
dispos_manager: impl Into<PhotographDisposManager>,
is_current_character: impl Into<bool>,
)
fn ctor( self, character_id: impl Into<Il2CppString>, dispos_manager: impl Into<PhotographDisposManager>, is_current_character: impl Into<bool>, )
.ctor(::unity::Il2CppString, crate::app::photographdisposmanager::PhotographDisposManager, bool) overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() 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: IPhotographSelectCharacterMenuItem> IPhotographSelectCharacterMenuItemMethods for __T
Available on crate feature
app-photographselectcharactermenuitem only.