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

Required Methods§

source

fn get(&self) -> Option<DBusObject>

source

fn info(&self) -> DBusInterfaceInfo

source

fn set_object(&self, object: Option<&impl IsA<DBusObject>>)

Implementors§