Struct civet::CivetRequest [] [src]

pub struct CivetRequest<'a> { /* fields omitted */ }

Trait Implementations

impl<'a> Request for CivetRequest<'a>
[src]

The version of HTTP being used

The version of the conduit spec being used

The request method, such as GET, POST, PUT, DELETE or PATCH

The scheme part of the request URL

The host part of the requested URL

The initial part of the request URL's path that corresponds to a virtual root. This allows an application to have a virtual location that consumes part of the path. Read more

The remainder of the path.

The portion of the request URL that follows the "?"

The remote IP address of the client or the last proxy that sent the request. Read more

The byte-size of the body, if any

The request's headers, as conduit::Headers.

A Reader for the body of the request

A readable map of extensions

A mutable map of extensions

impl<'a> Read for CivetRequest<'a>
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a "by reference" adaptor for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

Unstable (io)

: the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an Iterator over chars. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more