pub trait IGmapMenuSequenceMethods: IGmapMenuSequence {
// Provided methods
fn ctor(
self,
open_top_callback: impl Into<Action>,
decide_callback: impl Into<Action>,
close_callback: impl Into<Action>,
) { ... }
fn open_top_callback(self) { ... }
fn on_shutdown(self) { ... }
fn init(self) { ... }
fn open_top_menu(self) { ... }
fn enter_chapter_dialog(self) { ... }
fn final(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
open_top_callback: impl Into<Action>,
decide_callback: impl Into<Action>,
close_callback: impl Into<Action>,
)
fn ctor( self, open_top_callback: impl Into<Action>, decide_callback: impl Into<Action>, close_callback: impl Into<Action>, )
.ctor(crate::system::action::Action, crate::system::action::Action, crate::system::action::Action) overload
Sourcefn open_top_callback(self)
fn open_top_callback(self)
OpenTopCallback() overload
Sourcefn on_shutdown(self)
fn on_shutdown(self)
OnShutdown() overload
OpenTopMenu() overload
Sourcefn enter_chapter_dialog(self)
fn enter_chapter_dialog(self)
EnterChapterDialog() 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: IGmapMenuSequence> IGmapMenuSequenceMethods for __T
Available on crate feature
app-gmapmenusequence only.