Trait SpinDoubleEventMethods

Source
pub trait SpinDoubleEventMethods: NotifyEventMethods {
    // Provided methods
    fn get_value(&self) -> c_double { ... }
    fn set_value(&self, value: c_double) { ... }
}
Expand description

This trait represents C++ wxSpinDoubleEvent class’s methods and inheritance.

See SpinDoubleEventIsOwned documentation for the class usage.

Provided Methods§

Source

fn get_value(&self) -> c_double

Returns the value associated with this spin control event.

See C++ wxSpinDoubleEvent::GetValue()’s documentation.

Source

fn set_value(&self, value: c_double)

Set the value associated with the event.

See C++ wxSpinDoubleEvent::SetValue()’s documentation.

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§