pub trait IProfileCardFavoriteCharacterMenuItemMethods: IProfileCardFavoriteCharacterMenuItem {
Show 15 methods
// Provided methods
fn get_m_character_data(self) -> ProfileCardFavoriteCharacterData { ... }
fn set_m_character_data(
self,
value: impl Into<ProfileCardFavoriteCharacterData>,
) { ... }
fn get_m_decided(self) -> bool { ... }
fn set_m_decided(self, value: impl Into<bool>) { ... }
fn ctor(
self,
character_data: impl Into<ProfileCardFavoriteCharacterData>,
initial_select: impl Into<bool>,
) { ... }
fn on_build(self) { ... }
fn on_build_menu_item_content(self) { ... }
fn set_initial_color(self) { ... }
fn update_fixed_cursor(self) { ... }
fn update_new_icon(self) { ... }
fn set_decided(self, decided: impl Into<bool>) { ... }
fn on_select(self) { ... }
fn on_cursor_move_end(self) { ... }
fn on_deselect(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn get_m_character_data(self) -> ProfileCardFavoriteCharacterData
fn get_m_character_data(self) -> ProfileCardFavoriteCharacterData
get_m_CharacterData() overload
Sourcefn set_m_character_data(
self,
value: impl Into<ProfileCardFavoriteCharacterData>,
)
fn set_m_character_data( self, value: impl Into<ProfileCardFavoriteCharacterData>, )
set_m_CharacterData(crate::app::profilecardfavoritecharacterdata::ProfileCardFavoriteCharacterData) overload
Sourcefn get_m_decided(self) -> bool
fn get_m_decided(self) -> bool
get_m_Decided() overload
Sourcefn set_m_decided(self, value: impl Into<bool>)
fn set_m_decided(self, value: impl Into<bool>)
set_m_Decided(bool) overload
Sourcefn ctor(
self,
character_data: impl Into<ProfileCardFavoriteCharacterData>,
initial_select: impl Into<bool>,
)
fn ctor( self, character_data: impl Into<ProfileCardFavoriteCharacterData>, initial_select: impl Into<bool>, )
.ctor(crate::app::profilecardfavoritecharacterdata::ProfileCardFavoriteCharacterData, bool) overload
OnBuildMenuItemContent() overload
Sourcefn set_initial_color(self)
fn set_initial_color(self)
SetInitialColor() overload
Sourcefn update_fixed_cursor(self)
fn update_fixed_cursor(self)
UpdateFixedCursor() overload
Sourcefn update_new_icon(self)
fn update_new_icon(self)
UpdateNewIcon() overload
Sourcefn set_decided(self, decided: impl Into<bool>)
fn set_decided(self, decided: impl Into<bool>)
SetDecided(bool) overload
Sourcefn on_cursor_move_end(self)
fn on_cursor_move_end(self)
OnCursorMoveEnd() overload
Sourcefn on_deselect(self)
fn on_deselect(self)
OnDeselect() overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() 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: IProfileCardFavoriteCharacterMenuItem> IProfileCardFavoriteCharacterMenuItemMethods for __T
Available on crate feature
app-profilecardfavoritecharactermenuitem only.