Enum mux::Rmsg [] [src]

pub enum Rmsg {
    Ok(Vec<u8>),
    Error(String),
    Nack(String),
}

Representation of a mux Rreq and Rdispatch message body.

Variants

Successful response containing a body.

Response failed. The String describes the error.

Negative acknowledgment. The String describes the reason.

Trait Implementations

impl PartialEq for Rmsg
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Rmsg
[src]

impl Debug for Rmsg
[src]

Formats the value using the given formatter.