logo
pub struct Styles {
    pub ok: Style,
    pub skipped: Style,
    pub err: Style,
    pub retry: Style,
    pub header: Style,
    pub bold: Style,
    pub is_present: bool,
}
Expand description

Styles for terminal output.

Fields

ok: Style

Style for rendering successful events.

skipped: Style

Style for rendering skipped events.

err: Style

Style for rendering errors and failed events.

retry: Style

Style for rendering retried Scenarios.

header: Style

Style for rendering header.

bold: Style

Style for rendering bold.

is_present: bool

Indicates whether the terminal was detected.

Implementations

Creates new Styles.

Applies the given Coloring to these Styles.

Returns Styles with brighter colors.

If terminal is present colors input with Styles::ok color or leaves “as is” otherwise.

If terminal is present colors input with Styles::skipped color or leaves “as is” otherwise.

If terminal is present colors input with Styles::err color or leaves “as is” otherwise.

If terminal is present colors input with Styles::retry color or leaves “as is” otherwise.

If terminal is present colors input with Styles::header color or leaves “as is” otherwise.

If terminal is present makes input bold or leaves “as is” otherwise.

Generates a formatted summary String.

Formats Stats for a terminal output.

Trait Implementations

Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Asserts this Writer being Normalized. Read more
Wraps this Writer into a Normalized version. Read more
Wraps this Writer to print a summary at the end of an output. Read more
Wraps this Writer to fail on Skipped Steps if their Scenario isn’t marked with @allow.skipped tag. Read more
Wraps this Writer to fail on Skipped Steps if the given with predicate returns true. Read more
Wraps this Writer to re-output Skipped Steps at the end of an output. Read more
Wraps this Writer to re-output Failed Steps or Parser errors at the end of an output. Read more
Wraps this Writer to re-output filtered events at the end of an output. Read more
Attaches the provided other Writer to the current one for passing events to both of them simultaneously. Read more
Wraps this Writer into a discard::Arbitrary one, providing a no-op ArbitraryWriter implementation. Read more
Wraps this Writer into a discard::Stats one, providing a no-op StatsWriter implementation returning only 0. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.