Trait sourceview5::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>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &DBusObject, &DBusInterface) + 'static { ... }
    fn connect_interface_removed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &DBusObject, &DBusInterface) + 'static { ... }
    fn connect_object_added<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &DBusObject) + 'static { ... }
    fn connect_object_removed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &DBusObject) + 'static { ... }
}

Provided Methods§

source

fn interface( &self, object_path: &str, interface_name: &str, ) -> Option<DBusInterface>

source

fn object(&self, object_path: &str) -> Option<DBusObject>

source

fn object_path(&self) -> GString

source

fn objects(&self) -> Vec<DBusObject>

source

fn connect_interface_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &DBusObject, &DBusInterface) + 'static,

source

fn connect_interface_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &DBusObject, &DBusInterface) + 'static,

source

fn connect_object_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &DBusObject) + 'static,

source

fn connect_object_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &DBusObject) + 'static,

Object Safety§

This trait is not object safe.

Implementors§