Enum mux::MessageFrame [] [src]

pub enum MessageFrame {
    Treq(Treq),
    Rreq(Rmsg),
    Tdispatch(Tdispatch),
    Rdispatch(Rdispatch),
    Tinit(Init),
    Rinit(Init),
    Tdrain,
    Rdrain,
    Tping,
    Rping,
    Tdiscarded(Tdiscarded),
    Tlease(Tlease),
    Rerr(Rerr),
}

Type wrapper for the mux packet representations.

Variants

Methods

impl MessageFrame
[src]

Get the i8 value coresponding the a MessageFrame.

Trait Implementations

impl Debug for MessageFrame
[src]

Formats the value using the given formatter.

impl PartialEq for MessageFrame
[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 MessageFrame
[src]