Skip to main content

IDebugUIHandlerValue

Trait IDebugUIHandlerValue 

Source
pub trait IDebugUIHandlerValue: IDebugUIHandlerWidget {
    // Provided methods
    fn name_label(self) -> Text { ... }
    fn set_name_label(self, value: Text) { ... }
    fn value_label(self) -> Text { ... }
    fn set_value_label(self, value: Text) { ... }
    fn m_field(self) -> DebugUI_Value { ... }
    fn set_m_field(self, value: DebugUI_Value) { ... }
    fn m_timer(self) -> f32 { ... }
    fn set_m_timer(self, value: f32) { ... }
}

Provided Methods§

Source

fn name_label(self) -> Text

Source

fn set_name_label(self, value: Text)

Source

fn value_label(self) -> Text

Source

fn set_value_label(self, value: Text)

Source

fn m_field(self) -> DebugUI_Value

Source

fn set_m_field(self, value: DebugUI_Value)

Source

fn m_timer(self) -> f32

Source

fn set_m_timer(self, value: f32)

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§