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, for example, then don't use colors.

Never emit colors.

Trait Implementations

impl Clone for ColorChoice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ColorChoice
[src]

impl Debug for ColorChoice
[src]

Formats the value using the given formatter.

impl Eq for ColorChoice
[src]

impl PartialEq for ColorChoice
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.