pub trait GLBaseSrcExt: 'static {
    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; }
Available on crate feature v1_18 only.
Expand description

Trait containing all GLBaseSrc methods.

Implementors

GLBaseSrc

Required Methods§

Implementors§