F

Trait F 

Source
pub trait F {
    // Required methods
    fn get(&self, table: &str, id: &str) -> Result<String, String>;
    fn put(&self, table: &str, id: &str, data: String) -> bool;
    fn fetch(&self, table: &str) -> Result<HashMap<String, String>, String>;
}

Required Methods§

Source

fn get(&self, table: &str, id: &str) -> Result<String, String>

Source

fn put(&self, table: &str, id: &str, data: String) -> bool

Source

fn fetch(&self, table: &str) -> Result<HashMap<String, String>, String>

Implementors§

Source§

impl F for Store