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§

source§

impl Styles

source

pub fn header(&self, severity: Severity) -> &ColorSpec

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

source

pub fn label(&self, severity: Severity, label_style: LabelStyle) -> &ColorSpec

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

Trait Implementations§

source§

impl Clone for Styles

source§

fn clone(&self) -> Styles

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Styles

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Styles

source§

fn default() -> Styles

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.