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§

source

fn is_absolute(&self) -> bool

source

fn control_source(&self) -> Option<ControlSource>

source

fn set_control_source<P: IsA<ControlSource>>(&self, control_source: Option<&P>)

source

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

Object Safety§

This trait is not object safe.

Implementors§