Enum dbus::ConnectionItem [] [src]

pub enum ConnectionItem {
    Nothing,
    MethodCall(Message),
    Signal(Message),
    MethodReturn(Message),
}

When listening for incoming events on the D-Bus, this enum will tell you what type of incoming event has happened.

Variants

No event between now and timeout

Incoming method call

Incoming signal

Incoming method return, including method return errors (mostly used for Async I/O)

Trait Implementations

impl Debug for ConnectionItem
[src]

[src]

Formats the value using the given formatter.

impl From<Message> for ConnectionItem
[src]

[src]

Performs the conversion.