Skip to main content

DBusProxyExtManual

Trait DBusProxyExtManual 

Source
pub trait DBusProxyExtManual: IsA<DBusProxy> + 'static {
    // Provided methods
    fn connect_g_properties_changed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, &Variant, &StrVRef) + Send + Sync + 'static { ... }
    fn connect_g_signal<F>(&self, detail: Option<&str>, f: F) -> SignalHandlerId
       where F: Fn(&Self, Option<&str>, &str, &Variant) + Send + Sync + 'static { ... }
}

Provided Methods§

Source

fn connect_g_properties_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Variant, &StrVRef) + Send + Sync + 'static,

Source

fn connect_g_signal<F>(&self, detail: Option<&str>, f: F) -> SignalHandlerId
where F: Fn(&Self, Option<&str>, &str, &Variant) + Send + Sync + 'static,

Available on crate feature v2_72 only.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<O> DBusProxyExtManual for O
where O: IsA<DBusProxy>,