Trait msg_store::Keeper[][src]

pub trait Keeper {
    fn add(&mut self, package: &Package);
fn get(&mut self, uuid: &Uuid) -> Option<String>;
fn del(&mut self, uuid: &Uuid);
fn fetch(&mut self) -> Vec<PacketMetaData>; }
Expand description

This trait is used to create a database plugin for a store

Required methods

Implementors