pub trait MonitorExt: IsA<Monitor> + Sealed + 'static {
    // Provided methods
    fn element(&self) -> Option<Element> { ... }
    fn element_name(&self) -> Option<GString> { ... }
    fn pipeline(&self) -> Option<Pipeline> { ... }
    fn target(&self) -> Option<Object> { ... }
    fn object(&self) -> Option<Object> { ... }
    fn set_pipeline<P: IsA<Pipeline>>(&self, pipeline: Option<&P>) { ... }
    fn validate_parent(&self) -> Option<Monitor> { ... }
    fn connect_pipeline_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_verbosity_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn element(&self) -> Option<Element>

source

fn element_name(&self) -> Option<GString>

source

fn pipeline(&self) -> Option<Pipeline>

source

fn target(&self) -> Option<Object>

source

fn object(&self) -> Option<Object>

source

fn set_pipeline<P: IsA<Pipeline>>(&self, pipeline: Option<&P>)

source

fn validate_parent(&self) -> Option<Monitor>

source

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

source

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

Implementors§