Enum dbus::ConnectionItem [] [src]

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

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 (mostly used for Async I/O)

Indicates whether a file descriptor should be monitored or not. Unless you're doing Async I/O, you can simply ignore this variant.

Trait Implementations

impl Debug for ConnectionItem
[src]

Formats the value using the given formatter.