Struct secure_session::middleware::SessionHandler
[−]
[src]
pub struct SessionHandler<V, K, S> where
V: Serialize + DeserializeOwned + 'static,
K: Key<Value = V>,
S: SessionManager<V>, { /* fields omitted */ }Uses a SessionManager to serialize and deserialize cookies during the request/response cycle.
Trait Implementations
impl<V: Serialize + DeserializeOwned + 'static, K: Key<Value = V> + Send + Sync, S: SessionManager<V> + 'static> Handler for SessionHandler<V, K, S>[src]
fn handle(&self, request: &mut Request) -> IronResult<Response>[src]
Produce a Response from a Request, with the possibility of error.