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

Required methods

Gets the DBusObject that self belongs to, if any.

Returns

A DBusObject or None. The returned reference should be freed with g_object_unref().

Gets D-Bus introspection information for the D-Bus interface implemented by self.

Returns

A DBusInterfaceInfo. Do not free.

Sets the DBusObject for self to object.

Note that self will hold a weak reference to object.

object

A DBusObject or None.

Implementors