gstreamer::auto::device_monitor

Trait DeviceMonitorExt

Source
pub trait DeviceMonitorExt:
    IsA<DeviceMonitor>
    + Sealed
    + 'static {
    // Provided methods
    fn bus(&self) -> Bus { ... }
    fn providers(&self) -> Vec<GString> { ... }
    fn shows_all_devices(&self) -> bool { ... }
    fn set_show_all_devices(&self, show_all: bool) { ... }
    fn start(&self) -> Result<(), BoolError> { ... }
    fn stop(&self) { ... }
    fn shows_all(&self) -> bool { ... }
    fn set_show_all(&self, show_all: bool) { ... }
    fn connect_show_all_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn bus(&self) -> Bus

Source

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

Source

fn shows_all_devices(&self) -> bool

Source

fn set_show_all_devices(&self, show_all: bool)

Source

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

Source

fn stop(&self)

Source

fn shows_all(&self) -> bool

Source

fn set_show_all(&self, show_all: bool)

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§