pub trait IMenuAccessoryContentMethods: IMenuAccessoryContent {
// Provided methods
fn get_menu(self) -> BasicMenu { ... }
fn set_menu(self, menu: impl Into<BasicMenu>) { ... }
fn is_opening(self) -> bool { ... }
fn is_closing(self) -> bool { ... }
fn is_closed(self) -> bool { ... }
fn awake(self) { ... }
fn open_anime(self) { ... }
fn close_anime(self) { ... }
fn update(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
GetMenu() overload
SetMenu(crate::app::basicmenu::BasicMenu) overload
Sourcefn is_opening(self) -> bool
fn is_opening(self) -> bool
IsOpening() overload
Sourcefn is_closing(self) -> bool
fn is_closing(self) -> bool
IsClosing() overload
Sourcefn open_anime(self)
fn open_anime(self)
OpenAnime() overload
Sourcefn close_anime(self)
fn close_anime(self)
CloseAnime() 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: IMenuAccessoryContent> IMenuAccessoryContentMethods for __T
Available on crate feature
app-menuaccessorycontent only.