Trait gio::prelude::DBusObjectManagerExt
source · pub trait DBusObjectManagerExt: IsA<DBusObjectManager> + Sealed + 'static {
// Provided methods
fn interface(
&self,
object_path: &str,
interface_name: &str
) -> Option<DBusInterface> { ... }
fn object(&self, object_path: &str) -> Option<DBusObject> { ... }
fn object_path(&self) -> GString { ... }
fn objects(&self) -> Vec<DBusObject> { ... }
fn connect_interface_added<F: Fn(&Self, &DBusObject, &DBusInterface) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_interface_removed<F: Fn(&Self, &DBusObject, &DBusInterface) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_object_added<F: Fn(&Self, &DBusObject) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_object_removed<F: Fn(&Self, &DBusObject) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
}Expand description
Provided Methods§
sourcefn interface(
&self,
object_path: &str,
interface_name: &str
) -> Option<DBusInterface>
fn interface( &self, object_path: &str, interface_name: &str ) -> Option<DBusInterface>
Gets the interface proxy for interface_name at object_path, if
any.
object_path
Object path to look up.
interface_name
D-Bus interface name to look up.
Returns
A DBusInterface instance or None. Free
with g_object_unref().
sourcefn object(&self, object_path: &str) -> Option<DBusObject>
fn object(&self, object_path: &str) -> Option<DBusObject>
Gets the DBusObject at object_path, if any.
object_path
Object path to look up.
Returns
A DBusObject or None. Free with
g_object_unref().
sourcefn object_path(&self) -> GString
fn object_path(&self) -> GString
sourcefn objects(&self) -> Vec<DBusObject>
fn objects(&self) -> Vec<DBusObject>
Gets all DBusObject objects known to self.
Returns
A list of
DBusObject objects. The returned list should be freed with
g_list_free() after each element has been freed with
g_object_unref().
sourcefn connect_interface_added<F: Fn(&Self, &DBusObject, &DBusInterface) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_interface_added<F: Fn(&Self, &DBusObject, &DBusInterface) + 'static>( &self, f: F ) -> SignalHandlerId
Emitted when interface is added to object.
This signal exists purely as a convenience to avoid having to
connect signals to all objects managed by manager.
object
The DBusObject on which an interface was added.
interface
The DBusInterface that was added.
sourcefn connect_interface_removed<F: Fn(&Self, &DBusObject, &DBusInterface) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_interface_removed<F: Fn(&Self, &DBusObject, &DBusInterface) + 'static>( &self, f: F ) -> SignalHandlerId
Emitted when interface has been removed from object.
This signal exists purely as a convenience to avoid having to
connect signals to all objects managed by manager.
object
The DBusObject on which an interface was removed.
interface
The DBusInterface that was removed.