Enum stderrlog::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 Copy for ColorChoice
[src]

impl Eq for ColorChoice
[src]

impl PartialEq<ColorChoice> for ColorChoice
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Clone for ColorChoice
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ColorChoice
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ColorChoice

impl Sync for ColorChoice