Trait dbus_async::Binder[][src]

pub trait Binder: Sized {
    fn bind_by_receiver<'async_trait>(
        self,
        dbus: DBus,
        receiver: Receiver<Message>
    ) -> Pin<Box<dyn Future<Output = DBusResult<()>> + Send + 'async_trait>>
    where
        Self: 'async_trait
; fn bind<'async_trait>(
        self,
        dbus: DBus,
        object_path: ObjectPath
    ) -> Pin<Box<dyn Future<Output = DBusResult<()>> + Send + 'async_trait>>
    where
        Self: Send + 'async_trait
, { ... } }

Required methods

Provided methods

Implementations on Foreign Types

Implementors