Struct hyper::server::Request [] [src]

pub struct Request { /* fields omitted */ }
[]

A request bundles several parts of an incoming NetworkStream, given to a Handler.

Methods

impl Request
[src]

[]

The Method, such as Get, Post, etc.

[]

The headers of the incoming request.

[]

The target request-uri for this request.

[]

The version of HTTP for this request.

[]

The remote socket address of this request

[]

The target path of this Request.

[]

The query string of this Request.

[]

Take the Body of this Request.

[]

Deconstruct this Request into its pieces.

Modifying these pieces will have no effect on how hyper behaves.

Trait Implementations

impl Debug for Request
[src]

[]

Formats the value using the given formatter.