pub trait ControlBindingExt: 'static {
    fn value(&self, timestamp: ClockTime) -> Option<Value>;
    fn is_disabled(&self) -> bool;
    fn set_disabled(&self, disabled: bool);
    fn sync_values(
        &self,
        object: &impl IsA<Object>,
        timestamp: ClockTime,
        last_sync: impl Into<Option<ClockTime>>
    ) -> bool; fn object(&self) -> Option<Object>; }

Required Methods

Implementors