[][src]Trait gstreamer_check::prelude::PipelineExt

pub trait PipelineExt: 'static {
    fn auto_clock(&self);
fn get_auto_flush_bus(&self) -> bool;
fn get_delay(&self) -> ClockTime;
fn get_latency(&self) -> ClockTime;
fn get_pipeline_clock(&self) -> Option<Clock>;
fn set_auto_flush_bus(&self, auto_flush: bool);
fn set_delay(&self, delay: ClockTime);
fn set_latency(&self, latency: ClockTime);
fn use_clock<P>(&self, clock: Option<&P>)
    where
        P: IsA<Clock>
;
fn connect_property_auto_flush_bus_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Send + Sync + Fn(&Self)
;
fn connect_property_delay_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Send + Sync + Fn(&Self)
;
fn connect_property_latency_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Send + Sync + Fn(&Self)
; }

Required methods

fn auto_clock(&self)

fn get_auto_flush_bus(&self) -> bool

fn get_delay(&self) -> ClockTime

fn get_latency(&self) -> ClockTime

fn get_pipeline_clock(&self) -> Option<Clock>

fn set_auto_flush_bus(&self, auto_flush: bool)

fn set_delay(&self, delay: ClockTime)

fn set_latency(&self, latency: ClockTime)

fn use_clock<P>(&self, clock: Option<&P>) where
    P: IsA<Clock>, 

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

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

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

Loading content...

Implementors

impl<O> PipelineExt for O where
    O: IsA<Pipeline>, 
[src]

Loading content...