Struct dbus::MsgHandlerResult[][src]

pub struct MsgHandlerResult {
    pub handled: bool,
    pub done: bool,
    pub reply: Vec<Message>,
}

The result from MsgHandler::handle.

Fields

Indicates that the message has been dealt with and should not be processed further.

Indicates that this MsgHandler no longer wants to receive messages and should be removed.

Messages to send (e g, a reply to a method call)

Trait Implementations

impl Debug for MsgHandlerResult
[src]

Formats the value using the given formatter. Read more

impl Default for MsgHandlerResult
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations