Enum termcolor::ColorChoice [−][src]
pub enum ColorChoice { Always, AlwaysAnsi, Auto, Never, }
ColorChoice represents the color preferences of an end user.
Variants
Try very hard to emit colors. This includes emitting ANSI colors on Windows if the console API is unavailable.
AlwaysAnsi is like Always, except it never tries to use anything other than emitting ANSI color codes.
Try to use colors, but don’t force the issue. If the console isn’t
available on Windows, or if TERM=dumb, or if NO_COLOR
is defined, for
example, then don’t use colors.
Never emit colors.
Trait Implementations
impl Clone for ColorChoice
[src]
impl Clone for ColorChoice
[src]fn clone(&self) -> ColorChoice
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl PartialEq<ColorChoice> for ColorChoice
[src]
impl PartialEq<ColorChoice> for ColorChoice
[src]