Trait DataValue

Source
pub trait DataValue: PropertyInstanceGetter + PropertyInstanceSetter {
    // Provided methods
    fn get_value(&self) -> Option<Value> { ... }
    fn set_value(&self, v: Value) { ... }
}

Provided Methods§

Source

fn get_value(&self) -> Option<Value>

Source

fn set_value(&self, v: Value)

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§