Enum flexi_logger::AdaptiveFormat
source · pub enum AdaptiveFormat {
Default,
Detailed,
Opt,
WithThread,
Custom(FormatFunction, FormatFunction),
}
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(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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more