Trait slog_term::ThreadSafeTimestampFn [] [src]

pub trait ThreadSafeTimestampFn: Fn(&mut Write) -> Result<()> + Send + Sync + UnwindSafe + RefUnwindSafe + 'static { }

Threadsafe timestamp formatting function type

To satify slog-rs thread and unwind safety requirements, the bounds expressed by this trait need to satisfied for a function to be used in timestamp formatting.

Implementors