Struct nickel::Request [] [src]

pub struct Request<'mw, 'server, D: 'mw = ()> {
    pub origin: HyperRequest<'mw, 'server>,
    pub route_result: Option<RouteResult<'mw, D>>,
    // some fields omitted
}

A container for all the request data.

The lifetime 'mw represents the lifetime of various bits of middleware state within nickel. It can vary and get shorter.

The lifetime 'server represents the lifetime of data internal to the server. It is fixed and longer than 'mw.

Fields

origin

the original hyper::server::Request

route_result

a HashMap<String, String> holding all params with names and values

Methods

impl<'mw, 'server, D> Request<'mw, 'server, D>

fn from_internal(req: HyperRequest<'mw, 'server>, data: &'mw D) -> Request<'mw, 'server, D>

fn param(&self, key: &str) -> Option<&str>

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

fn server_data(&self) -> &D

Trait Implementations

impl<'mw, 'server, D> Extensible for Request<'mw, 'server, D>

fn extensions(&self) -> &TypeMap

fn extensions_mut(&mut self) -> &mut TypeMap

impl<'mw, 'server, D> Pluggable for Request<'mw, 'server, D>

fn get<P>(&mut self) -> Result<P::Value, P::Error> where Self: Extensible, P: Plugin<Self>, P::Value: Clone, P::Value: Any

fn get_ref<P>(&mut self) -> Result<&P::Value, P::Error> where P: Plugin<Self>, Self: Extensible, P::Value: Any

fn get_mut<P>(&mut self) -> Result<&mut P::Value, P::Error> where P: Plugin<Self>, Self: Extensible, P::Value: Any

fn compute<P>(&mut self) -> Result<P::Value, P::Error> where P: Plugin<Self>

impl<'mw, 'conn, D> JsonBody for Request<'mw, 'conn, D>

fn json_as<T: Decodable>(&mut self) -> Result<T, Error>

impl<'mw, 'conn, D> QueryString for Request<'mw, 'conn, D>

fn query(&mut self) -> &Query