Trait conduit::Request [] [src]

pub trait Request {
    fn http_version(&self) -> Version;
    fn conduit_version(&self) -> Version;
    fn method(&self) -> Method;
    fn scheme(&self) -> Scheme;
    fn host<'a>(&'a self) -> Host<'a>;
    fn virtual_root<'a>(&'a self) -> Option<&'a str>;
    fn path<'a>(&'a self) -> &'a str;
    fn query_string<'a>(&'a self) -> Option<&'a str>;
    fn remote_addr(&self) -> SocketAddr;
    fn content_length(&self) -> Option<u64>;
    fn headers<'a>(&'a self) -> &'a Headers;
    fn body<'a>(&'a mut self) -> &'a mut Read;
    fn extensions<'a>(&'a self) -> &'a Extensions;
    fn mut_extensions<'a>(&'a mut self) -> &'a mut Extensions;
}

Required Methods

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.

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.

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

Implementors