Skip to main content

IGmapMenuSequenceMethods

Trait IGmapMenuSequenceMethods 

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

Source

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

Source

fn open_top_callback(self)

OpenTopCallback() overload

Source

fn on_shutdown(self)

OnShutdown() overload

Source

fn init(self)

Init() overload

Source

fn open_top_menu(self)

OpenTopMenu() overload

Source

fn enter_chapter_dialog(self)

EnterChapterDialog() overload

Source

fn final(self)

Final() 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: IGmapMenuSequence> IGmapMenuSequenceMethods for __T

Available on crate feature app-gmapmenusequence only.