Trait Formater

Source
pub trait Formater:
    Send
    + Sync
    + 'static {
    // Required methods
    fn boxed(self) -> Box<dyn Formater>;
    fn format(&self, record: &Record<'_>) -> String;
}

Required Methods§

Source

fn boxed(self) -> Box<dyn Formater>

Source

fn format(&self, record: &Record<'_>) -> String

Implementors§