Trait finchers_session::RawSession[][src]

pub trait RawSession {
    type WriteFuture: Future<Item = (), Error = Error>;
    fn get(&self) -> Option<&str>;
fn set(&mut self, value: String);
fn remove(&mut self);
fn write(self, input: &mut Input) -> Self::WriteFuture; }

The trait representing the backend to manage session value.

Associated Types

Required Methods

Implementors