pub enum AdaptiveFormat {
Default,
Detailed,
Opt,
WithThread,
Custom(FormatFunction, FormatFunction),
}Expand description
Helps to use coloring only if the output goes to a tty.
Is used in
Logger::adaptive_format_for_stderr and
Logger::adaptive_format_for_stdout,
which switch off coloring if the output is not going to a tty but is piped into another
program, because then color control byte sequences are usually not expected.
Variants§
Default
colors only.Chooses between default_format
and colored_default_format.
Detailed
colors only.Chooses between detailed_format
and colored_detailed_format.
Opt
colors only.Chooses between opt_format
and colored_opt_format.
WithThread
colors only.Chooses between with_thread
and colored_with_thread.
Custom(FormatFunction, FormatFunction)
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§
Source§impl Clone for AdaptiveFormat
impl Clone for AdaptiveFormat
Source§fn clone(&self) -> AdaptiveFormat
fn clone(&self) -> AdaptiveFormat
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for AdaptiveFormat
Auto Trait Implementations§
impl Freeze for AdaptiveFormat
impl RefUnwindSafe for AdaptiveFormat
impl Send for AdaptiveFormat
impl Sync for AdaptiveFormat
impl Unpin for AdaptiveFormat
impl UnwindSafe for AdaptiveFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)