pub trait IPhotographSelectWeaponMenuItemMethods: IPhotographSelectWeaponMenuItem {
// Provided methods
fn get_is_current(self) -> bool { ... }
fn get_weapon_data(self) -> ItemData { ... }
fn ctor(
self,
weapon_data: impl Into<ItemData>,
dispos_manager: impl Into<PhotographDisposManager>,
is_current: impl Into<bool>,
) { ... }
fn on_select(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn get_is_current(self) -> bool
fn get_is_current(self) -> bool
get_IsCurrent() overload
Sourcefn get_weapon_data(self) -> ItemData
fn get_weapon_data(self) -> ItemData
get_WeaponData() overload
Sourcefn ctor(
self,
weapon_data: impl Into<ItemData>,
dispos_manager: impl Into<PhotographDisposManager>,
is_current: impl Into<bool>,
)
fn ctor( self, weapon_data: impl Into<ItemData>, dispos_manager: impl Into<PhotographDisposManager>, is_current: impl Into<bool>, )
.ctor(crate::app::itemdata::ItemData, crate::app::photographdisposmanager::PhotographDisposManager, bool) overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() 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: IPhotographSelectWeaponMenuItem> IPhotographSelectWeaponMenuItemMethods for __T
Available on crate feature
app-photographselectweaponmenuitem only.