Trait iron_sessionstorage_0_6::SessionBackend [] [src]

pub trait SessionBackend: Send + Sync + 'static {
    type S: RawSession;
    fn from_request(&self, request: &mut Request) -> Self::S;
}

Associated Types

Required Methods

Parse the session before request handling and return the data in parsed form.

Implementors