Skip to main content

IProfileCardAlbumRootMethods

Trait IProfileCardAlbumRootMethods 

Source
pub trait IProfileCardAlbumRootMethods: IProfileCardAlbumRoot {
    // Provided methods
    fn ctor(self) { ... }
    fn start(self) { ... }
    fn get_profile_card_root(self) -> ProfileCardRoot { ... }
    fn get_album_list_menu_content(self) -> ProfileCardAlbumListMenuContent { ... }
    fn set_page_num(self, num: impl Into<i32>, warning_color: impl Into<bool>) { ... }
    fn set_page_max(self, max: impl Into<i32>) { ... }
    fn set_active_arrow_group(self, enabled: impl Into<bool>) { ... }
    fn close(self) { ... }
    fn is_closing(self) -> bool { ... }
    fn destroy(self) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn start(self)

Start() overload

Source

fn get_profile_card_root(self) -> ProfileCardRoot

GetProfileCardRoot() overload

Source

fn get_album_list_menu_content(self) -> ProfileCardAlbumListMenuContent

GetAlbumListMenuContent() overload

Source

fn set_page_num(self, num: impl Into<i32>, warning_color: impl Into<bool>)

SetPageNum(i32, bool) overload

Source

fn set_page_max(self, max: impl Into<i32>)

SetPageMax(i32) overload

Source

fn set_active_arrow_group(self, enabled: impl Into<bool>)

SetActiveArrowGroup(bool) overload

Source

fn close(self)

Close() overload

Source

fn is_closing(self) -> bool

IsClosing() overload

Source

fn destroy(self)

Destroy() 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: IProfileCardAlbumRoot> IProfileCardAlbumRootMethods for __T

Available on crate feature app-profilecardalbumroot only.