pub trait GLBaseSrcExt: IsA<GLBaseSrc> + Sealed + 'static {
    // Provided methods
    fn timestamp_offset(&self) -> i64 { ... }
    fn set_timestamp_offset(&self, timestamp_offset: i64) { ... }
    fn connect_timestamp_offset_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all GLBaseSrc methods.

§Implementors

GLBaseSrc

Provided Methods§

source

fn timestamp_offset(&self) -> i64

source

fn set_timestamp_offset(&self, timestamp_offset: i64)

source

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

Object Safety§

This trait is not object safe.

Implementors§