pub trait TriggerControlSourceExt: 'static {
    // Required methods
    fn tolerance(&self) -> i64;
    fn set_tolerance(&self, tolerance: i64);
    fn connect_tolerance_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn tolerance(&self) -> i64

source

fn set_tolerance(&self, tolerance: i64)

source

fn connect_tolerance_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F ) -> SignalHandlerId

Implementors§