Trait gstreamer::prelude::PipelineExt[][src]

pub trait PipelineExt: 'static {
    fn auto_clock(&self);
fn is_auto_flush_bus(&self) -> bool;
fn delay(&self) -> ClockTime;
fn latency(&self) -> Option<ClockTime>;
fn pipeline_clock(&self) -> Clock;
fn set_auto_flush_bus(&self, auto_flush: bool);
fn set_delay(&self, delay: ClockTime);
fn set_latency(&self, latency: impl Into<Option<ClockTime>>);
fn use_clock<P: IsA<Clock>>(&self, clock: Option<&P>);
fn connect_auto_flush_bus_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_delay_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_latency_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

Implementors