pub trait IPhotographSelectScarfColorMenuItemMethods: IPhotographSelectScarfColorMenuItem {
// Provided methods
fn get_is_current(self) -> bool { ... }
fn ctor(
self,
color_idx: impl Into<i32>,
color_idx_old: impl Into<i32>,
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 ctor(
self,
color_idx: impl Into<i32>,
color_idx_old: impl Into<i32>,
dispos_manager: impl Into<PhotographDisposManager>,
is_current: impl Into<bool>,
)
fn ctor( self, color_idx: impl Into<i32>, color_idx_old: impl Into<i32>, dispos_manager: impl Into<PhotographDisposManager>, is_current: impl Into<bool>, )
.ctor(i32, i32, 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: IPhotographSelectScarfColorMenuItem> IPhotographSelectScarfColorMenuItemMethods for __T
Available on crate feature
app-photographselectscarfcolormenuitem only.