pub trait DBusObjectManagerClientExt: IsA<DBusObjectManagerClient> + 'static {
// Provided methods
fn connection(&self) -> DBusConnection { ... }
fn flags(&self) -> DBusObjectManagerClientFlags { ... }
fn name(&self) -> GString { ... }
fn name_owner(&self) -> Option<GString> { ... }
fn connect_interface_proxy_signal<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &DBusObjectProxy, &DBusProxy, &str, &str, &Variant) + Send + Sync + 'static { ... }
fn connect_name_owner_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + Send + Sync + 'static { ... }
}Provided Methods§
fn connection(&self) -> DBusConnection
fn flags(&self) -> DBusObjectManagerClientFlags
fn name(&self) -> GString
fn name_owner(&self) -> Option<GString>
fn connect_interface_proxy_signal<F>(&self, f: F) -> SignalHandlerId
fn connect_name_owner_notify<F>(&self, f: F) -> SignalHandlerId
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".