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: Fn(&Self, &DBusObjectProxy, &DBusProxy, &str, &str, &Variant) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_name_owner_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}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: Fn(&Self, &DBusObjectProxy, &DBusProxy, &str, &str, &Variant) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_name_owner_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.