Trait GLBase
Source pub trait GLBaseSrcExt: IsA<GLBaseSrc> + 'static {
    // Provided methods
    fn gl_context(&self) -> Option<GLContext> { ... }
    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 { ... }
}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
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.