[][src]Struct async_fcgi::fastcgi::Record

pub struct Record {
    pub body: Body,
    // some fields omitted
}

FCGI record

Fields

body: Body

Implementations

impl Record[src]

pub const MGMT_REQUEST_ID: u16[src]

Default request id component of Header

pub const PARAMS: u8[src]

type component of Header

Request

Receive name-value pairs from the Web server to the application

pub const GET_VALUES: u8[src]

type component of Header

Request

The Web server can query specific variables within the application The application receives.

pub const GET_VALUES_RESULT: u8[src]

type component of Header

Response

The Web server can query specific variables within the application. The application responds.

Auto Trait Implementations

Blanket Implementations

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

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

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

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.