gstreamer_controller::prelude

Trait InterpolationControlSourceExt

Source
pub trait InterpolationControlSourceExt: IsA<InterpolationControlSource> + '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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§