Trait gstreamer_validate::prelude::MonitorExt
source · 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 { ... }
}
Expand description
Provided Methods§
sourcefn element_name(&self) -> Option<GString>
fn element_name(&self) -> Option<GString>
§Returns
The name of the element associated with self
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
Object Safety§
This trait is not object safe.