Trait gstreamer::prelude::DeviceMonitorExt
source · pub trait DeviceMonitorExt: 'static {
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;
}
Expand description
Required Methods§
sourcefn shows_all_devices(&self) -> bool
fn shows_all_devices(&self) -> bool
sourcefn set_show_all_devices(&self, show_all: bool)
fn set_show_all_devices(&self, show_all: bool)
Set if all devices should be visible, even those devices from hidden
providers. Setting show_all
to true might show some devices multiple times.
show_all
show all devices
sourcefn start(&self) -> Result<(), BoolError>
fn start(&self) -> Result<(), BoolError>
Starts monitoring the devices, one this has succeeded, the
GST_MESSAGE_DEVICE_ADDED
and GST_MESSAGE_DEVICE_REMOVED
messages
will be emitted on the bus when the list of devices changes.
Returns
true
if the device monitoring could be started, i.e. at least a
single device provider was started successfully.