[][src]Struct crossterm_style::TerminalColor

pub struct TerminalColor { /* fields omitted */ }

Allows you to style the terminal.

Features:

  • Foreground color (16 base colors)
  • Background color (16 base colors)
  • 256 color support (Windows 10 and UNIX only)
  • RGB support (Windows 10 and UNIX only)
  • Text Attributes like: bold, italic, underscore and crossed word ect (Windows 10 and UNIX only)

Check /examples/ in the library for more specific examples.

Methods

impl TerminalColor[src]

pub fn new() -> TerminalColor[src]

Create new instance whereon color related actions can be performed.

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

Set the foreground color to the given color.

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

Set the background color to the given color.

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

Reset the terminal colors and attributes to default.

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

Get available color count. (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]