logo
pub trait Binding<T> {
    fn evaluate(&self, old_value: &T) -> T;
}
Expand description

Types that can be set as bindings for a Property

Required methods

Evaluate the binding and return the new value

Implementors