[][src]Trait conduit::RequestExt

pub trait RequestExt {
    fn http_version(&self) -> Version;
fn method(&self) -> &Method;
fn scheme(&self) -> Scheme;
fn host(&self) -> Host;
fn virtual_root(&self) -> Option<&str>;
fn path(&self) -> &str;
fn path_mut(&mut self) -> &mut String;
fn query_string(&self) -> Option<&str>;
fn remote_addr(&self) -> SocketAddr;
fn content_length(&self) -> Option<u64>;
fn headers(&self) -> &HeaderMap;
fn body(&mut self) -> &mut dyn Read;
fn extensions(&self) -> &Extensions;
fn mut_extensions(&mut self) -> &mut Extensions; }

Required methods

fn http_version(&self) -> Version

The version of HTTP being used

fn method(&self) -> &Method

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

fn scheme(&self) -> Scheme

The scheme part of the request URL

fn host(&self) -> Host

The host part of the requested URL

fn virtual_root(&self) -> Option<&str>

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.

fn path(&self) -> &str

The remainder of the path.

fn path_mut(&mut self) -> &mut String

Obtain the request path for mutation/rewrite

fn query_string(&self) -> Option<&str>

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

fn remote_addr(&self) -> SocketAddr

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

fn content_length(&self) -> Option<u64>

The byte-size of the body, if any

fn headers(&self) -> &HeaderMap

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

fn body(&mut self) -> &mut dyn Read

A Reader for the body of the request

Blocking

The returned value implements the blocking Read API and should only be read from while in a blocking context.

fn extensions(&self) -> &Extensions

A readable map of extensions

fn mut_extensions(&mut self) -> &mut Extensions

A mutable map of extensions

Loading content...

Implementors

Loading content...