Skip to main content

IProfileCardVisualFrameMenuItemMethods

Trait IProfileCardVisualFrameMenuItemMethods 

Source
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§

Source

fn get_m_frame_data(self) -> ProfileCardFrameData

get_m_FrameData() overload

Source

fn set_m_frame_data(self, value: impl Into<ProfileCardFrameData>)

set_m_FrameData(crate::app::profilecardframedata::ProfileCardFrameData) overload

Source

fn ctor( self, frame_data: impl Into<ProfileCardFrameData>, initial_select: impl Into<bool>, )

.ctor(crate::app::profilecardframedata::ProfileCardFrameData, bool) overload

Source

fn on_build_menu_item_content(self)

OnBuildMenuItemContent() overload

Source

fn is_new_arrival(self) -> bool

IsNewArrival() overload

Source

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§

Source§

impl<__T: IProfileCardVisualFrameMenuItem> IProfileCardVisualFrameMenuItemMethods for __T

Available on crate feature app-profilecardvisualframemenuitem only.