Skip to main content

IProfileCardTitleMenuItemMethods

Trait IProfileCardTitleMenuItemMethods 

Source
pub trait IProfileCardTitleMenuItemMethods: IProfileCardTitleMenuItem {
Show 15 methods // Provided methods fn get_m_title_data(self) -> ProfileCardTitleData { ... } fn set_m_title_data(self, value: impl Into<ProfileCardTitleData>) { ... } fn get_m_decided(self) -> bool { ... } fn set_m_decided(self, value: impl Into<bool>) { ... } fn ctor( self, title_data: impl Into<ProfileCardTitleData>, 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§

Source

fn get_m_title_data(self) -> ProfileCardTitleData

get_m_TitleData() overload

Source

fn set_m_title_data(self, value: impl Into<ProfileCardTitleData>)

set_m_TitleData(crate::app::profilecardtitledata::ProfileCardTitleData) overload

Source

fn get_m_decided(self) -> bool

get_m_Decided() overload

Source

fn set_m_decided(self, value: impl Into<bool>)

set_m_Decided(bool) overload

Source

fn ctor( self, title_data: impl Into<ProfileCardTitleData>, initial_select: impl Into<bool>, )

.ctor(crate::app::profilecardtitledata::ProfileCardTitleData, bool) overload

Source

fn on_build(self)

OnBuild() overload

Source

fn on_build_menu_item_content(self)

OnBuildMenuItemContent() overload

Source

fn set_initial_color(self)

SetInitialColor() overload

Source

fn update_fixed_cursor(self)

UpdateFixedCursor() overload

Source

fn update_new_icon(self)

UpdateNewIcon() overload

Source

fn set_decided(self, decided: impl Into<bool>)

SetDecided(bool) overload

Source

fn on_select(self)

OnSelect() overload

Source

fn on_cursor_move_end(self)

OnCursorMoveEnd() overload

Source

fn on_deselect(self)

OnDeselect() overload

Source

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§

Source§

impl<__T: IProfileCardTitleMenuItem> IProfileCardTitleMenuItemMethods for __T

Available on crate feature app-profilecardtitlemenuitem only.