pub trait HasSession {
    fn session(&mut self) -> &mut Session;
}
Expand description

This trait must be implemented by the Context type in order to use the SessionFilter

Required Methods

Get a reference to the Session for this current request

Implementors

Implement HasSession on requests where the Context has sessions