Enum libtest_mimic::FormatSetting[][src]

pub enum FormatSetting {
    Pretty,
    Terse,
    Json,
}

Possible values for the --format option.

Variants

One line per test. Output for humans. (default)

One character per test. Usefull for test suites with many tests.

Output as JSON.

Trait Implementations

impl Debug for FormatSetting
[src]

Formats the value using the given formatter. Read more

impl Clone for FormatSetting
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for FormatSetting
[src]

impl PartialEq for FormatSetting
[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 FormatSetting
[src]

impl Default for FormatSetting
[src]

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

impl FromStr for FormatSetting
[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