pub trait IProfileCardVisualTextDecoMenuItemMethods: IProfileCardVisualTextDecoMenuItem {
// Provided methods
fn get_m_text_deco_data(self) -> ProfileCardTextDecoData { ... }
fn set_m_text_deco_data(self, value: impl Into<ProfileCardTextDecoData>) { ... }
fn ctor(
self,
text_deco_data: impl Into<ProfileCardTextDecoData>,
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_deco_data(self) -> ProfileCardTextDecoData
fn get_m_text_deco_data(self) -> ProfileCardTextDecoData
get_m_TextDecoData() overload
Sourcefn set_m_text_deco_data(self, value: impl Into<ProfileCardTextDecoData>)
fn set_m_text_deco_data(self, value: impl Into<ProfileCardTextDecoData>)
set_m_TextDecoData(crate::app::profilecardtextdecodata::ProfileCardTextDecoData) overload
Sourcefn ctor(
self,
text_deco_data: impl Into<ProfileCardTextDecoData>,
initial_select: impl Into<bool>,
)
fn ctor( self, text_deco_data: impl Into<ProfileCardTextDecoData>, initial_select: impl Into<bool>, )
.ctor(crate::app::profilecardtextdecodata::ProfileCardTextDecoData, 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: IProfileCardVisualTextDecoMenuItem> IProfileCardVisualTextDecoMenuItemMethods for __T
Available on crate feature
app-profilecardvisualtextdecomenuitem only.