[][src]Trait gstreamer::GstBinExt

pub trait GstBinExt: 'static {
    pub fn add<P: IsA<Element>>(&self, element: &P) -> Result<(), BoolError>;
pub fn find_unlinked_pad(&self, direction: PadDirection) -> Option<Pad>;
pub fn get_by_interface(&self, iface: Type) -> Option<Element>;
pub fn get_by_name(&self, name: &str) -> Option<Element>;
pub fn get_by_name_recurse_up(&self, name: &str) -> Option<Element>;
pub fn get_suppressed_flags(&self) -> ElementFlags;
pub fn recalculate_latency(&self) -> Result<(), BoolError>;
pub fn remove<P: IsA<Element>>(&self, element: &P) -> Result<(), BoolError>;
pub fn set_suppressed_flags(&self, flags: ElementFlags);
pub fn sync_children_states(&self) -> Result<(), BoolError>;
pub fn get_property_async_handling(&self) -> bool;
pub fn set_property_async_handling(&self, async_handling: bool);
pub fn get_property_message_forward(&self) -> bool;
pub fn set_property_message_forward(&self, message_forward: bool);
pub fn connect_deep_element_added<F: Fn(&Self, &Bin, &Element) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_deep_element_removed<F: Fn(&Self, &Bin, &Element) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_element_added<F: Fn(&Self, &Element) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_element_removed<F: Fn(&Self, &Element) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_async_handling_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_message_forward_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

pub fn add<P: IsA<Element>>(&self, element: &P) -> Result<(), BoolError>[src]

pub fn find_unlinked_pad(&self, direction: PadDirection) -> Option<Pad>[src]

pub fn get_by_interface(&self, iface: Type) -> Option<Element>[src]

pub fn get_by_name(&self, name: &str) -> Option<Element>[src]

pub fn get_by_name_recurse_up(&self, name: &str) -> Option<Element>[src]

pub fn get_suppressed_flags(&self) -> ElementFlags[src]

pub fn recalculate_latency(&self) -> Result<(), BoolError>[src]

pub fn remove<P: IsA<Element>>(&self, element: &P) -> Result<(), BoolError>[src]

pub fn set_suppressed_flags(&self, flags: ElementFlags)[src]

pub fn sync_children_states(&self) -> Result<(), BoolError>[src]

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

pub fn set_property_async_handling(&self, async_handling: bool)[src]

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

pub fn set_property_message_forward(&self, message_forward: bool)[src]

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<Bin>> GstBinExt for O[src]

Loading content...