Trait Binding
sixtyfps_corelib::properties
pub trait Binding<T> { pub fn evaluate(&self, old_value: &T) -> T; }
Types that can be set as bindings for a Property
pub fn evaluate(&self, old_value: &T) -> T
Evaluate the binding and return the new value
impl<T, F: Fn() -> T> Binding<T> for F
pub fn evaluate(&self, _value: &T) -> T