pub trait ISortieInventoryManager_SelectionInfoMethods: ISortieInventoryManager_SelectionInfo {
Show 14 methods
// Provided methods
fn reset(self) { ... }
fn is_mode_none(self) -> bool { ... }
fn is_mode_trade(self) -> bool { ... }
fn reset_mode(self) { ... }
fn get_unit_item(self) -> UnitItem { ... }
fn get_mode(self) -> SortieInventoryManager_SelectionInfo_Modes { ... }
fn set_mode(
self,
value: impl Into<SortieInventoryManager_SelectionInfo_Modes>,
) { ... }
fn get_is_unit(self) -> bool { ... }
fn set_is_unit(self, value: impl Into<bool>) { ... }
fn get_unit(self) -> Unit { ... }
fn set_unit(self, value: impl Into<Unit>) { ... }
fn get_owner_item_index(self) -> i32 { ... }
fn set_owner_item_index(self, value: impl Into<i32>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_mode_none(self) -> bool
fn is_mode_none(self) -> bool
IsModeNone() overload
Sourcefn is_mode_trade(self) -> bool
fn is_mode_trade(self) -> bool
IsModeTrade() overload
Sourcefn reset_mode(self)
fn reset_mode(self)
ResetMode() overload
Sourcefn get_unit_item(self) -> UnitItem
fn get_unit_item(self) -> UnitItem
GetUnitItem() overload
Sourcefn get_mode(self) -> SortieInventoryManager_SelectionInfo_Modes
fn get_mode(self) -> SortieInventoryManager_SelectionInfo_Modes
get_Mode() overload
Sourcefn set_mode(self, value: impl Into<SortieInventoryManager_SelectionInfo_Modes>)
fn set_mode(self, value: impl Into<SortieInventoryManager_SelectionInfo_Modes>)
set_Mode(crate::app::sortieinventorymanager::SortieInventoryManager_SelectionInfo_Modes) overload
Sourcefn get_is_unit(self) -> bool
fn get_is_unit(self) -> bool
get_IsUnit() overload
Sourcefn set_is_unit(self, value: impl Into<bool>)
fn set_is_unit(self, value: impl Into<bool>)
set_IsUnit(bool) overload
Sourcefn get_owner_item_index(self) -> i32
fn get_owner_item_index(self) -> i32
get_OwnerItemIndex() overload
Sourcefn set_owner_item_index(self, value: impl Into<i32>)
fn set_owner_item_index(self, value: impl Into<i32>)
set_OwnerItemIndex(i32) 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: ISortieInventoryManager_SelectionInfo> ISortieInventoryManager_SelectionInfoMethods for __T
Available on crate feature
app-sortieinventorymanager only.