pub trait IProfileCardVisualFrameMenuItemMethods: IProfileCardVisualFrameMenuItem {
// Provided methods
fn get_m_frame_data(self) -> ProfileCardFrameData { ... }
fn set_m_frame_data(self, value: impl Into<ProfileCardFrameData>) { ... }
fn ctor(
self,
frame_data: impl Into<ProfileCardFrameData>,
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_frame_data(self) -> ProfileCardFrameData
fn get_m_frame_data(self) -> ProfileCardFrameData
get_m_FrameData() overload
Sourcefn set_m_frame_data(self, value: impl Into<ProfileCardFrameData>)
fn set_m_frame_data(self, value: impl Into<ProfileCardFrameData>)
set_m_FrameData(crate::app::profilecardframedata::ProfileCardFrameData) overload
Sourcefn ctor(
self,
frame_data: impl Into<ProfileCardFrameData>,
initial_select: impl Into<bool>,
)
fn ctor( self, frame_data: impl Into<ProfileCardFrameData>, initial_select: impl Into<bool>, )
.ctor(crate::app::profilecardframedata::ProfileCardFrameData, 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: IProfileCardVisualFrameMenuItem> IProfileCardVisualFrameMenuItemMethods for __T
Available on crate feature
app-profilecardvisualframemenuitem only.