pub trait DBusInterfaceExt: 'static {
    fn get(&self) -> Option<DBusObject>;
    fn info(&self) -> DBusInterfaceInfo;
    fn set_object(&self, object: Option<&impl IsA<DBusObject>>);
}

Required methods

Implementors