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

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

Required methods

pub fn auto_clock(&self)[src]

pub fn get_auto_flush_bus(&self) -> bool[src]

pub fn get_delay(&self) -> ClockTime[src]

pub fn get_latency(&self) -> ClockTime[src]

pub fn get_pipeline_clock(&self) -> Option<Clock>[src]

pub fn set_auto_flush_bus(&self, auto_flush: bool)[src]

pub fn set_delay(&self, delay: ClockTime)[src]

pub fn set_latency(&self, latency: ClockTime)[src]

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

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

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

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

Loading content...

Implementors

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

Loading content...