Trait sourceview5::prelude::DBusObjectExt

source ·
pub trait DBusObjectExt: IsA<DBusObject> + Sealed + 'static {
    // Provided methods
    fn interface(&self, interface_name: &str) -> Option<DBusInterface> { ... }
    fn interfaces(&self) -> Vec<DBusInterface> { ... }
    fn object_path(&self) -> GString { ... }
    fn connect_interface_added<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &DBusInterface) + 'static { ... }
    fn connect_interface_removed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &DBusInterface) + 'static { ... }
}

Provided Methods§

source

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

source

fn interfaces(&self) -> Vec<DBusInterface>

source

fn object_path(&self) -> GString

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> DBusObjectExt for O
where O: IsA<DBusObject>,