[][src]Trait horoscope::ledger::History

pub trait History: Send + Sync {
    fn insert(
        &mut self,
        store: &String,
        job: &String,
        status: &Status,
        time: &i64
    );
fn entry(
        &mut self,
        store: &String,
        job: &String,
        status: &Status,
        time: &i64
    ) -> bool;
fn vclone(&self) -> Box<dyn History>; }

Required methods

fn insert(&mut self, store: &String, job: &String, status: &Status, time: &i64)

fn entry(
    &mut self,
    store: &String,
    job: &String,
    status: &Status,
    time: &i64
) -> bool

fn vclone(&self) -> Box<dyn History>

Loading content...

Implementors

impl History for Ledger[src]

Loading content...