pub trait IMapUnitCommandMenu_JumpToMenuItemMethods: IMapUnitCommandMenu_JumpToMenuItem {
// Provided methods
fn get_label(self) -> MapSequenceHuman_Label { ... }
fn jump_sequence(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn enumerate(
self,
mind: impl Into<MapMind_Type>,
action_mask: impl Into<MapTarget_ActionMask>,
) -> i32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_label(self) -> MapSequenceHuman_Label
fn get_label(self) -> MapSequenceHuman_Label
get_Label() overload
Sourcefn jump_sequence(self)
fn jump_sequence(self)
JumpSequence() overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() overload
Sourcefn enumerate(
self,
mind: impl Into<MapMind_Type>,
action_mask: impl Into<MapTarget_ActionMask>,
) -> i32
fn enumerate( self, mind: impl Into<MapMind_Type>, action_mask: impl Into<MapTarget_ActionMask>, ) -> i32
Enumerate(crate::app::mapmind::MapMind_Type, crate::app::maptarget::MapTarget_ActionMask) 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: IMapUnitCommandMenu_JumpToMenuItem> IMapUnitCommandMenu_JumpToMenuItemMethods for __T
Available on crate feature
app-mapunitcommandmenu only.