[][src]Trait dbus::channel::Sender

pub trait Sender {
    fn send(&self, msg: Message) -> Result<u32, ()>;
}

Abstraction over different connections that send data

Required methods

fn send(&self, msg: Message) -> Result<u32, ()>

Schedules a message for sending.

Returns a serial number than can be used to match against a reply.

Loading content...

Implementations on Foreign Types

impl Sender for RefCell<Vec<Message>>[src]

Use in case you don't want the send the message, but just collect it instead.

Loading content...

Implementors

impl Sender for dbus::blocking::Connection[src]

impl Sender for dbus::blocking::LocalConnection[src]

impl Sender for dbus::blocking::SyncConnection[src]

impl Sender for Channel[src]

impl Sender for dbus::ffidisp::Connection[src]

impl Sender for dbus::nonblock::Connection[src]

impl Sender for dbus::nonblock::LocalConnection[src]

impl Sender for dbus::nonblock::SyncConnection[src]

Loading content...