[][src]Struct crossterm_style::TerminalColor

pub struct TerminalColor { /* fields omitted */ }

A terminal color.

Examples

Basic usage:

// You can replace the following line with `use crossterm::TerminalColor;`
// if you're using the `crossterm` crate with the `style` feature enabled.
use crossterm_style::{Result, TerminalColor, Color};

fn main() -> Result<()> {
    let color = TerminalColor::new();
    // Set foreground color
    color.set_fg(Color::Blue)?;
    // Set background color
    color.set_bg(Color::Red)?;
    // Reset to the default colors
    color.reset()
}

Methods

impl TerminalColor[src]

pub fn new() -> TerminalColor[src]

Creates a new TerminalColor.

pub fn set_fg(&self, color: Color) -> Result<()>[src]

Sets the foreground color.

pub fn set_bg(&self, color: Color) -> Result<()>[src]

Sets the background color.

pub fn reset(&self) -> Result<()>[src]

Resets the terminal colors and attributes to the default ones.

pub fn available_color_count(&self) -> u16[src]

Returns available color count.

Notes

This does not always provide a good result.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]