Trait gio::prelude::DBusInterfaceExt [−][src]
pub trait DBusInterfaceExt: 'static { fn get(&self) -> Option<DBusObject>; fn info(&self) -> DBusInterfaceInfo; fn set_object<P: IsA<DBusObject>>(&self, object: Option<&P>); }
Expand description
Trait containing all DBusInterface
methods.
Implementors
Required methods
fn get(&self) -> Option<DBusObject>
fn get(&self) -> Option<DBusObject>
Gets the DBusObject
that self
belongs to, if any.
Returns
A DBusObject
or None
. The returned
reference should be freed with g_object_unref()
.
fn info(&self) -> DBusInterfaceInfo
fn info(&self) -> DBusInterfaceInfo
Gets D-Bus introspection information for the D-Bus interface
implemented by self
.
Returns
A DBusInterfaceInfo
. Do not free.
fn set_object<P: IsA<DBusObject>>(&self, object: Option<&P>)
fn set_object<P: IsA<DBusObject>>(&self, object: Option<&P>)
Sets the DBusObject
for self
to object
.
Note that self
will hold a weak reference to object
.
object
A DBusObject
or None
.