pub struct Styles {
Show 15 fields pub header_bug: ColorSpec, pub header_error: ColorSpec, pub header_warning: ColorSpec, pub header_note: ColorSpec, pub header_help: ColorSpec, pub header_message: ColorSpec, pub primary_label_bug: ColorSpec, pub primary_label_error: ColorSpec, pub primary_label_warning: ColorSpec, pub primary_label_note: ColorSpec, pub primary_label_help: ColorSpec, pub secondary_label: ColorSpec, pub line_number: ColorSpec, pub source_border: ColorSpec, pub note_bullet: ColorSpec,
}
Expand description

Styles to use when rendering the diagnostic.

Fields

header_bug: ColorSpec

The style to use when rendering bug headers. Defaults to fg:red bold intense.

header_error: ColorSpec

The style to use when rendering error headers. Defaults to fg:red bold intense.

header_warning: ColorSpec

The style to use when rendering warning headers. Defaults to fg:yellow bold intense.

header_note: ColorSpec

The style to use when rendering note headers. Defaults to fg:green bold intense.

header_help: ColorSpec

The style to use when rendering help headers. Defaults to fg:cyan bold intense.

header_message: ColorSpec

The style to use when the main diagnostic message. Defaults to bold intense.

primary_label_bug: ColorSpec

The style to use when rendering bug labels. Defaults to fg:red.

primary_label_error: ColorSpec

The style to use when rendering error labels. Defaults to fg:red.

primary_label_warning: ColorSpec

The style to use when rendering warning labels. Defaults to fg:yellow.

primary_label_note: ColorSpec

The style to use when rendering note labels. Defaults to fg:green.

primary_label_help: ColorSpec

The style to use when rendering help labels. Defaults to fg:cyan.

secondary_label: ColorSpec

The style to use when rendering secondary labels. Defaults fg:blue (or fg:cyan on windows).

line_number: ColorSpec

The style to use when rendering the line numbers. Defaults fg:blue (or fg:cyan on windows).

source_border: ColorSpec

The style to use when rendering the source code borders. Defaults fg:blue (or fg:cyan on windows).

note_bullet: ColorSpec

The style to use when rendering the note bullets. Defaults fg:blue (or fg:cyan on windows).

Implementations

The style used to mark a header at a given severity.

The style used to mark a primary or secondary label at a given severity.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.