[][src]Trait flo_binding::MutableBound

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

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

fn set(&self, new_value: Value)

Sets the value stored by this binding

Loading content...

Implementors

impl<Value: 'static + Clone + PartialEq + Send> MutableBound<Value> for Binding<Value>[src]

Loading content...