[][src]Struct dbus::MsgHandlerResult

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

The result from MsgHandler::handle.

Fields

handled: bool

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

done: bool

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

reply: Vec<Message>

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

Trait Implementations

impl Default for MsgHandlerResult[src]

impl Debug for MsgHandlerResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]