pub trait FormattableLogWriter {
    // Required methods
    fn with_format(self, new_format: Vec<LogItems>) -> Self;
    fn with_time_format(self, new_format: &str) -> Self;
}

Required Methods§

source

fn with_format(self, new_format: Vec<LogItems>) -> Self

source

fn with_time_format(self, new_format: &str) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FormattableLogWriter for Box<CursiveLogWriter>

source§

fn with_format(self, new_format: Vec<LogItems>) -> Self

Set up a custom log format

source§

fn with_time_format(self, new_format: &str) -> Self

Set up a custom format for a time

Implementors§