Trait iron_sessionstorage::Session [] [src]

pub trait Session {
    fn get(&self, key: &str) -> Option<&str>;
    fn set(&mut self, key: &str, value: String);
    fn write_cookies(&self, response: &mut Response);
}

Required Methods

Implementors