pub trait DirectControlBindingExt: IsA<DirectControlBinding> + Sealed + 'static {
    // Provided methods
    fn is_absolute(&self) -> bool { ... }
    fn control_source(&self) -> Option<ControlSource> { ... }
    fn set_control_source<P: IsA<ControlSource>>(
        &self,
        control_source: Option<&P>
    ) { ... }
    fn connect_control_source_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all DirectControlBinding methods.

§Implementors

DirectControlBinding

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§