pub trait MutableBound<Value>: Bound<Value> {
    fn set(&self, new_value: Value);
}
Expand description

Trait implemented by something that is bound to a value that can be changed

Bindings are similar in behaviour to Arc<Mutex>, so it’s possible to set the value of their target even when the binding itself is not mutable.

Required Methods

Sets the value stored by this binding

Implementors