pub trait IDebugEditMenuItemMethods: IDebugEditMenuItem {
// Provided methods
fn tick_value(self) -> bool { ... }
fn on_tick(self) { ... }
fn is_skip(self, v: impl Into<i32>) -> bool { ... }
fn get_value(self) -> i32 { ... }
fn set_value(self, value: impl Into<i32>) { ... }
fn get_min_value(self) -> i32 { ... }
fn get_max_value(self) -> i32 { ... }
fn get_step(self) -> i32 { ... }
fn get_fast(self) -> i32 { ... }
fn get_is_loop(self) -> bool { ... }
fn can_increment(self, value: impl Into<i32>) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn tick_value(self) -> bool
fn tick_value(self) -> bool
TickValue() overload
Sourcefn get_min_value(self) -> i32
fn get_min_value(self) -> i32
get_MinValue() overload
Sourcefn get_max_value(self) -> i32
fn get_max_value(self) -> i32
get_MaxValue() overload
Sourcefn get_is_loop(self) -> bool
fn get_is_loop(self) -> bool
get_IsLoop() overload
Sourcefn can_increment(self, value: impl Into<i32>) -> bool
fn can_increment(self, value: impl Into<i32>) -> bool
CanIncrement(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: IDebugEditMenuItem> IDebugEditMenuItemMethods for __T
Available on crate feature
app-debugeditmenuitem only.