Struct rs_router::Request [] [src]

pub struct Request<'a, 'b: 'a, 'c> { /* fields omitted */ }

Methods

impl<'a, 'b: 'a, 'c> Request<'a, 'b, 'c>
[src]

Methods from Deref<Target = HyperRequest<'a, 'b>>

Set the read timeout of the underlying NetworkStream.

Get a reference to the underlying NetworkStream.

Get a reference to the underlying Ssl stream, if connected over HTTPS.

This is actually just an alias for downcast_ref.

Deconstruct a Request into its constituent parts.

Trait Implementations

impl<'a, 'b: 'a, 'c> Deref for Request<'a, 'b, 'c>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'a, 'b: 'a, 'c> DerefMut for Request<'a, 'b, 'c>
[src]

The method called to mutably dereference a value

impl<'a, 'b: 'a, 'c> From<HyperRequest<'a, 'b>> for Request<'a, 'b, 'c>
[src]

Performs the conversion.