Trait persistentcache::PersistentCache [] [src]

pub trait PersistentCache {
    fn get(&self, _: &str) -> Result<Vec<u8>, Box<Error>>;
fn set(&self, _: &str, _: &[u8]) -> Result<(), Box<Error>>;
fn flush(&self) -> Result<(), Box<Error>>; }

Traits which need to be implemented by any storage

Required Methods

Return serialized value of variable

Set serialized value of variable

Flush storage

Implementors