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]

[src]

Produce a Response from a Request, with the possibility of error.