Enum dbus::MsgHandlerType[][src]

pub enum MsgHandlerType {
    All,
    MsgType(MessageType),
    Reply(u32),
}

Type of messages to be handled by a MsgHandler.

Note: More variants can be added in the future; but unless you're writing your own D-Bus engine you should not have to match on these anyway.

Variants

Handle all messages

Handle only messages of a specific type

Handle only method replies with this serial number

Trait Implementations

impl Clone for MsgHandlerType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MsgHandlerType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations