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

Required Methods

Implementors