Skip to main content

IArenaExpUnitSelectRootMethods

Trait IArenaExpUnitSelectRootMethods 

Source
pub trait IArenaExpUnitSelectRootMethods: IArenaExpUnitSelectRoot {
    // Provided methods
    fn create(
        self,
        super_: impl Into<ProcInst>,
        default_unit: impl Into<Unit>,
        decide_event_handler: impl Into<ArenaExpUnitSelectMenu_DecideEventHandler>,
    ) { ... }
    fn on_select_menu_item(self, base_unit: impl Into<Unit>) { ... }
    fn on_decide_menu_item(self, unit: impl Into<Unit>) { ... }
    fn on_help(self, parent: impl Into<ProcInst>) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn create( self, super_: impl Into<ProcInst>, default_unit: impl Into<Unit>, decide_event_handler: impl Into<ArenaExpUnitSelectMenu_DecideEventHandler>, )

Create(crate::app::procinst::ProcInst, crate::app::unit::Unit, crate::app::arenaexpunitselectmenu::ArenaExpUnitSelectMenu_DecideEventHandler) overload

Source

fn on_select_menu_item(self, base_unit: impl Into<Unit>)

OnSelectMenuItem(crate::app::unit::Unit) overload

Source

fn on_decide_menu_item(self, unit: impl Into<Unit>)

OnDecideMenuItem(crate::app::unit::Unit) overload

Source

fn on_help(self, parent: impl Into<ProcInst>)

OnHelp(crate::app::procinst::ProcInst) overload

Source

fn ctor(self)

.ctor() 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: IArenaExpUnitSelectRoot> IArenaExpUnitSelectRootMethods for __T

Available on crate feature app-arenaexpunitselectroot only.