Enum libtest_mimic::ColorSetting[][src]

pub enum ColorSetting {
    Auto,
    Always,
    Never,
}

Possible values for the --color option.

Variants

Colorize output if stdout is a tty and tests are run on serially (default).

Always colorize output.

Never colorize output.

Trait Implementations

impl Debug for ColorSetting
[src]

Formats the value using the given formatter. Read more

impl Clone for ColorSetting
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ColorSetting
[src]

impl PartialEq for ColorSetting
[src]

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

This method tests for !=.

impl Eq for ColorSetting
[src]

impl Default for ColorSetting
[src]

Returns the "default value" for a type. Read more

impl FromStr for ColorSetting
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations