ColorSpec in rustc_errors - Rust (original) (raw)
pub struct ColorSpec {
pub(crate) fg_color: Option<Color>,
pub(crate) bg_color: Option<Color>,
pub(crate) bold: bool,
pub(crate) intense: bool,
pub(crate) underline: bool,
pub(crate) dimmed: bool,
pub(crate) italic: bool,
pub(crate) reset: bool,
pub(crate) strikethrough: bool,
}
Expand description
A color specification.
Create a new color specification that has no colors or styles.
Get the foreground color.
Set the foreground color.
Get the background color.
Set the background color.
Get whether this is bold or not.
Note that the bold setting has no effect in a Windows console.
Set whether the text is bolded or not.
Note that the bold setting has no effect in a Windows console.
Get whether this is dimmed or not.
Note that the dimmed setting has no effect in a Windows console.
Set whether the text is dimmed or not.
Note that the dimmed setting has no effect in a Windows console.
Get whether this is italic or not.
Note that the italic setting has no effect in a Windows console.
Set whether the text is italicized or not.
Note that the italic setting has no effect in a Windows console.
Get whether this is underline or not.
Note that the underline setting has no effect in a Windows console.
Set whether the text is underlined or not.
Note that the underline setting has no effect in a Windows console.
Get whether this is strikethrough or not.
Note that the strikethrough setting has no effect in a Windows console.
Set whether the text is strikethrough or not.
Note that the strikethrough setting has no effect in a Windows console.
Get whether reset is enabled or not.
reset is enabled by default. When disabled and using ANSI escape sequences, a “reset” code will be emitted every time a ColorSpec
’s settings are applied.
Note that the reset setting has no effect in a Windows console.
Set whether to reset the terminal whenever color settings are applied.
reset is enabled by default. When disabled and using ANSI escape sequences, a “reset” code will be emitted every time a ColorSpec
’s settings are applied.
Typically this is useful if callers have a requirement to more scrupulously manage the exact sequence of escape codes that are emitted when using ANSI for colors.
Note that the reset setting has no effect in a Windows console.
Get whether this is intense or not.
On Unix-like systems, this will output the ANSI escape sequence that will print a high-intensity version of the color specified.
On Windows systems, this will output the ANSI escape sequence that will print a brighter version of the color specified.
Set whether the text is intense or not.
On Unix-like systems, this will output the ANSI escape sequence that will print a high-intensity version of the color specified.
On Windows systems, this will output the ANSI escape sequence that will print a brighter version of the color specified.
Returns true if this color specification has no colors or styles.
Clears this color specification so that it has no color/style settings.
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 15 bytes