ValueAssigner

Trait ValueAssigner 

Source
pub trait ValueAssigner {
    // Required method
    fn new(name: String, value: Value) -> Self;
}
Expand description

A trait for creating commands that assign primitive values to an attribute

Required Methods§

Source

fn new(name: String, value: Value) -> Self

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§