Skip to main content

IDebugEditMenuItemMethods

Trait IDebugEditMenuItemMethods 

Source
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§

Source

fn tick_value(self) -> bool

TickValue() overload

Source

fn on_tick(self)

OnTick() overload

Source

fn is_skip(self, v: impl Into<i32>) -> bool

IsSkip(i32) overload

Source

fn get_value(self) -> i32

get_Value() overload

Source

fn set_value(self, value: impl Into<i32>)

set_Value(i32) overload

Source

fn get_min_value(self) -> i32

get_MinValue() overload

Source

fn get_max_value(self) -> i32

get_MaxValue() overload

Source

fn get_step(self) -> i32

get_Step() overload

Source

fn get_fast(self) -> i32

get_Fast() overload

Source

fn get_is_loop(self) -> bool

get_IsLoop() overload

Source

fn can_increment(self, value: impl Into<i32>) -> bool

CanIncrement(i32) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IDebugEditMenuItem> IDebugEditMenuItemMethods for __T

Available on crate feature app-debugeditmenuitem only.