Trait DataValueArray

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

Provided Methods§

Source

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

Source

fn set_value(&self, v: Vec<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§