pub trait IProfileCardVisualTextColorMenuItemMethods: IProfileCardVisualTextColorMenuItem {
// Provided methods
fn get_m_text_color_data(self) -> ProfileCardTextColorData { ... }
fn set_m_text_color_data(self, value: impl Into<ProfileCardTextColorData>) { ... }
fn ctor(
self,
text_color_data: impl Into<ProfileCardTextColorData>,
initial_select: impl Into<bool>,
) { ... }
fn on_build_menu_item_content(self) { ... }
fn is_new_arrival(self) -> bool { ... }
fn set_already_read(self) { ... }
}Provided Methods§
Sourcefn get_m_text_color_data(self) -> ProfileCardTextColorData
fn get_m_text_color_data(self) -> ProfileCardTextColorData
get_m_TextColorData() overload
Sourcefn set_m_text_color_data(self, value: impl Into<ProfileCardTextColorData>)
fn set_m_text_color_data(self, value: impl Into<ProfileCardTextColorData>)
set_m_TextColorData(crate::app::profilecardtextcolordata::ProfileCardTextColorData) overload
Sourcefn ctor(
self,
text_color_data: impl Into<ProfileCardTextColorData>,
initial_select: impl Into<bool>,
)
fn ctor( self, text_color_data: impl Into<ProfileCardTextColorData>, initial_select: impl Into<bool>, )
.ctor(crate::app::profilecardtextcolordata::ProfileCardTextColorData, bool) overload
OnBuildMenuItemContent() overload
Sourcefn is_new_arrival(self) -> bool
fn is_new_arrival(self) -> bool
IsNewArrival() overload
Sourcefn set_already_read(self)
fn set_already_read(self)
SetAlreadyRead() 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: IProfileCardVisualTextColorMenuItem> IProfileCardVisualTextColorMenuItemMethods for __T
Available on crate feature
app-profilecardvisualtextcolormenuitem only.