Trait gstreamer::GstObjectExt[][src]

pub trait GstObjectExt: 'static {
    fn default_error(&self, error: &Error, debug: Option<&str>);
fn get_control_rate(&self) -> ClockTime;
fn get_name(&self) -> GString;
fn get_parent(&self) -> Option<Object>;
fn get_path_string(&self) -> GString;
fn has_active_control_bindings(&self) -> bool;
fn has_ancestor<P: IsA<Object>>(&self, ancestor: &P) -> bool;
fn has_as_ancestor<P: IsA<Object>>(&self, ancestor: &P) -> bool;
fn has_as_parent<P: IsA<Object>>(&self, parent: &P) -> bool;
fn set_control_binding_disabled(&self, property_name: &str, disabled: bool);
fn set_control_bindings_disabled(&self, disabled: bool);
fn set_control_rate(&self, control_rate: ClockTime);
fn set_parent<P: IsA<Object>>(&self, parent: &P) -> Result<(), BoolError>;
fn suggest_next_sync(&self) -> ClockTime;
fn sync_values(&self, timestamp: ClockTime) -> Result<(), BoolError>;
fn unparent(&self);
fn connect_property_parent_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn default_error(&self, error: &Error, debug: Option<&str>)[src]

fn get_control_rate(&self) -> ClockTime[src]

fn get_name(&self) -> GString[src]

fn get_parent(&self) -> Option<Object>[src]

fn get_path_string(&self) -> GString[src]

fn has_active_control_bindings(&self) -> bool[src]

fn has_ancestor<P: IsA<Object>>(&self, ancestor: &P) -> bool[src]

fn has_as_ancestor<P: IsA<Object>>(&self, ancestor: &P) -> bool[src]

fn has_as_parent<P: IsA<Object>>(&self, parent: &P) -> bool[src]

fn set_control_binding_disabled(&self, property_name: &str, disabled: bool)[src]

fn set_control_bindings_disabled(&self, disabled: bool)[src]

fn set_control_rate(&self, control_rate: ClockTime)[src]

fn set_parent<P: IsA<Object>>(&self, parent: &P) -> Result<(), BoolError>[src]

fn suggest_next_sync(&self) -> ClockTime[src]

fn sync_values(&self, timestamp: ClockTime) -> Result<(), BoolError>[src]

fn unparent(&self)[src]

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

Loading content...

Implementors

impl<O: IsA<Object>> GstObjectExt for O[src]

Loading content...