Struct slog_term::PlainDecorator
source · pub struct PlainDecorator<W>(/* private fields */)
where
W: Write;
Expand description
Plain (no-op) Decorator
implementation
This decorator doesn’t do any coloring, and doesn’t do any synchronization
between threads, so is not Sync
. It is however useful combined with
slog_async::Async
drain, as slog_async::Async
uses only one thread,
and thus requires only Send
from Drain
s it wraps.
use slog::*;
use slog_async::Async;
let decorator = slog_term::PlainDecorator::new(std::io::stdout());
let drain = Async::new(
slog_term::FullFormat::new(decorator).build().fuse()
)
.build()
.fuse();
Implementations§
Trait Implementations§
source§impl<W> Decorator for PlainDecorator<W>where
W: Write,
impl<W> Decorator for PlainDecorator<W>where
W: Write,
source§fn with_record<F>(
&self,
_record: &Record<'_>,
_logger_values: &OwnedKVList,
f: F
) -> Result<()>
fn with_record<F>( &self, _record: &Record<'_>, _logger_values: &OwnedKVList, f: F ) -> Result<()>
Auto Trait Implementations§
impl<W> !RefUnwindSafe for PlainDecorator<W>
impl<W> Send for PlainDecorator<W>where
W: Send,
impl<W> !Sync for PlainDecorator<W>
impl<W> Unpin for PlainDecorator<W>where
W: Unpin,
impl<W> UnwindSafe for PlainDecorator<W>where
W: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more