[][src]Trait gstreamer::GstObjectExt

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_name(&self, name: &str) -> Result<(), BoolError>;
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_name_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
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>)

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_name(&self, name: &str) -> Result<(), BoolError>

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_name_notify<F: Fn(&Self) + Send + Sync + 'static>(
    &self,
    f: F
) -> SignalHandlerId

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

Loading content...

Implementors

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

Loading content...