Struct slog_term::CompactFormat [−][src]
Compact terminal-output formatting Drain
Note: Compact logging format is not Sync
(thread-safe) and needs to be
synchronized externally, as current output depends on the previous one.
Put it into a std::sync::Mutex
or slog_async::Async
worker-thread to
serialize accesses to it.
Implementations
impl<D> CompactFormat<D> where
D: Decorator,
[src]
D: Decorator,
pub fn new(d: D) -> CompactFormatBuilder<D>
[src]
New CompactFormatBuilder
Trait Implementations
impl<D> Drain for CompactFormat<D> where
D: Decorator,
[src]
D: Decorator,
type Ok = ()
Type returned by this drain Read more
type Err = Error
Type of potential errors that can be returned by this Drain
fn log(
&self,
record: &Record<'_>,
values: &OwnedKVList
) -> Result<Self::Ok, Self::Err>
[src]
&self,
record: &Record<'_>,
values: &OwnedKVList
) -> Result<Self::Ok, Self::Err>
pub fn is_enabled(&self, level: Level) -> bool
[src]
pub fn is_critical_enabled(&self) -> bool
[src]
pub fn is_error_enabled(&self) -> bool
[src]
pub fn is_warning_enabled(&self) -> bool
[src]
pub fn is_info_enabled(&self) -> bool
[src]
pub fn is_debug_enabled(&self) -> bool
[src]
pub fn is_trace_enabled(&self) -> bool
[src]
pub fn map<F, R>(self, f: F) -> R where
F: FnOnce(Self) -> R,
[src]
F: FnOnce(Self) -> R,
pub fn filter<F>(self, f: F) -> Filter<Self, F> where
F: FilterFn,
[src]
F: FilterFn,
pub fn filter_level(self, level: Level) -> LevelFilter<Self>
[src]
pub fn map_err<F, E>(self, f: F) -> MapError<Self, E> where
F: MapErrFn<Self::Err, E>,
[src]
F: MapErrFn<Self::Err, E>,
pub fn ignore_res(self) -> IgnoreResult<Self>
[src]
pub fn fuse(self) -> Fuse<Self> where
Self::Err: Debug,
[src]
Self::Err: Debug,
Auto Trait Implementations
impl<D> !RefUnwindSafe for CompactFormat<D>
impl<D> Send for CompactFormat<D> where
D: Send,
D: Send,
impl<D> !Sync for CompactFormat<D>
impl<D> Unpin for CompactFormat<D> where
D: Unpin,
D: Unpin,
impl<D> UnwindSafe for CompactFormat<D> where
D: UnwindSafe,
D: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,