[][src]Trait gstreamer::DeviceMonitorExt

pub trait DeviceMonitorExt: 'static {
    fn get_bus(&self) -> Bus;
fn get_devices(&self) -> Vec<Device>;
fn get_providers(&self) -> Vec<GString>;
fn get_show_all_devices(&self) -> bool;
fn set_show_all_devices(&self, show_all: bool);
fn start(&self) -> Result<(), BoolError>;
fn stop(&self);
fn get_property_show_all(&self) -> bool;
fn set_property_show_all(&self, show_all: bool);
fn connect_property_show_all_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_bus(&self) -> Bus

fn get_devices(&self) -> Vec<Device>

fn get_providers(&self) -> Vec<GString>

fn get_show_all_devices(&self) -> bool

fn set_show_all_devices(&self, show_all: bool)

fn start(&self) -> Result<(), BoolError>

fn stop(&self)

fn get_property_show_all(&self) -> bool

fn set_property_show_all(&self, show_all: bool)

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

Loading content...

Implementors

impl<O: IsA<DeviceMonitor>> DeviceMonitorExt for O[src]

Loading content...