Skip to main content

IPhotographSelectCharacterMenuItemMethods

Trait IPhotographSelectCharacterMenuItemMethods 

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

Source

fn get_character_id(self) -> Il2CppString

get_CharacterId() overload

Source

fn get_is_current_character(self) -> bool

get_IsCurrentCharacter() overload

Source

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

Source

fn on_select(self)

OnSelect() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() overload

Source

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§

Source§

impl<__T: IPhotographSelectCharacterMenuItem> IPhotographSelectCharacterMenuItemMethods for __T

Available on crate feature app-photographselectcharactermenuitem only.