Trait slog_term::Decorator [] [src]

pub trait Decorator {
    fn with_record<F>(
        &self,
        _record: &Record,
        _logger_values: &OwnedKVList,
        f: F
    ) -> Result<()>
    where
        F: FnOnce(&mut RecordDecorator) -> Result<()>
; }

Output decorator

Trait implementing strategy of output formating in terms of IO, colors, etc.

Required Methods

Get a RecordDecorator for a given record

This allows Decorator to have on-stack data per processed Records

Implementors