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 |
route_result | a |