Trait MutablePropertyInstanceSetter

Source
pub trait MutablePropertyInstanceSetter: PropertyInstanceGetter {
    // Required method
    fn set<S: Into<String>>(&mut self, property_name: S, value: Value);
}

Required Methods§

Source

fn set<S: Into<String>>(&mut self, property_name: S, value: Value)

Sets the value of the given property by name

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§