pub trait InterpolationControlSourceExt: IsA<InterpolationControlSource> + Sealed + 'static {
    // Provided methods
    fn mode(&self) -> InterpolationMode { ... }
    fn set_mode(&self, mode: InterpolationMode) { ... }
    fn connect_mode_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all InterpolationControlSource methods.

§Implementors

InterpolationControlSource

Provided Methods§

source

fn mode(&self) -> InterpolationMode

source

fn set_mode(&self, mode: InterpolationMode)

source

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

Object Safety§

This trait is not object safe.

Implementors§