Enum async_fcgi::fastcgi::Body[][src]

pub enum Body {
    BeginRequest(BeginRequestBody),
    EndRequest(EndRequestBody),
    UnknownType(UnknownTypeBody),
    Params(NVBody),
    StdIn(Bytes),
    StdErr(Bytes),
    StdOut(Bytes),
    Abort,
    GetValues(NVBody),
    GetValuesResult(NVBody),
}

Variants

BeginRequest

Tuple Fields of BeginRequest

0: BeginRequestBody
EndRequest

Tuple Fields of EndRequest

0: EndRequestBody
UnknownType

Tuple Fields of UnknownType

0: UnknownTypeBody
Params

Tuple Fields of Params

0: NVBody
StdIn

Tuple Fields of StdIn

0: Bytes
StdErr

Tuple Fields of StdErr

0: Bytes
StdOut

Tuple Fields of StdOut

0: Bytes
Abort
GetValues

Tuple Fields of GetValues

0: NVBody
GetValuesResult

Tuple Fields of GetValuesResult

0: NVBody

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.