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§
Sourcefn get_profile_card_root(self) -> ProfileCardRoot
fn get_profile_card_root(self) -> ProfileCardRoot
GetProfileCardRoot() overload
GetAlbumListMenuContent() overload
Sourcefn set_page_num(self, num: impl Into<i32>, warning_color: impl Into<bool>)
fn set_page_num(self, num: impl Into<i32>, warning_color: impl Into<bool>)
SetPageNum(i32, bool) overload
Sourcefn set_page_max(self, max: impl Into<i32>)
fn set_page_max(self, max: impl Into<i32>)
SetPageMax(i32) overload
Sourcefn set_active_arrow_group(self, enabled: impl Into<bool>)
fn set_active_arrow_group(self, enabled: impl Into<bool>)
SetActiveArrowGroup(bool) overload
Sourcefn is_closing(self) -> bool
fn is_closing(self) -> bool
IsClosing() 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: IProfileCardAlbumRoot> IProfileCardAlbumRootMethods for __T
Available on crate feature
app-profilecardalbumroot only.