Skip to main content

LogWriter

Trait LogWriter 

Source
pub trait LogWriter {
    // Required methods
    fn regular(&mut self, line: &str);
    fn progress(&mut self, line: &str, id: Uuid);
    fn finished(&mut self, id: Uuid);
    fn flush(&mut self);
}

Required Methods§

Source

fn regular(&mut self, line: &str)

Source

fn progress(&mut self, line: &str, id: Uuid)

Source

fn finished(&mut self, id: Uuid)

Source

fn flush(&mut self)

Implementors§