Enum custom_utils::logger::AdaptiveFormat
source · [−]pub enum AdaptiveFormat {
Default,
Detailed,
Opt,
WithThread,
Custom(fn(&mut dyn Write, &mut DeferredNow, &Record<'_>) -> Result<(), Error>, fn(&mut dyn Write, &mut DeferredNow, &Record<'_>) -> Result<(), Error>),
}
Expand description
Can be used in
Logger::adaptive_format_for_stderr
and
Logger::adaptive_format_for_stdout
to use coloring only if the output goes to a tty.
This is helpful if the output is sometimes piped into other programs, which usually do not expect color control byte sequences.
Variants
Default
Chooses between default_format
and colored_default_format
.
Detailed
Chooses between detailed_format
and colored_detailed_format
.
Opt
Chooses between opt_format
and colored_opt_format
.
WithThread
Chooses between with_thread
and colored_with_thread
.
Custom(fn(&mut dyn Write, &mut DeferredNow, &Record<'_>) -> Result<(), Error>, fn(&mut dyn Write, &mut DeferredNow, &Record<'_>) -> Result<(), Error>)
Chooses between the first format function (which is supposed to be uncolored) and the second (which is supposed to be colored).
Allows providing own format functions, with freely choosable coloring technique, and making use of the tty detection.
Trait Implementations
sourceimpl Clone for AdaptiveFormat
impl Clone for AdaptiveFormat
sourcefn clone(&self) -> AdaptiveFormat
fn clone(&self) -> AdaptiveFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for AdaptiveFormat
Auto Trait Implementations
impl RefUnwindSafe for AdaptiveFormat
impl Send for AdaptiveFormat
impl Sync for AdaptiveFormat
impl Unpin for AdaptiveFormat
impl UnwindSafe for AdaptiveFormat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more