Trait conduit::RequestExt[][src]

pub trait RequestExt {
Show 15 methods 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; fn elapsed(&self) -> Duration { ... }
}

Required methods

The version of HTTP 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.

Obtain the request path for mutation/rewrite

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

Blocking

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

A readable map of extensions

A mutable map of extensions

Provided methods

The elapsed time since the start of the request (headers received)

Panics

This method may panic if the server does not add StartInstant to the request extensions, or if it has been removed by the application.

Implementors