[][src]Struct console::Style

pub struct Style { /* fields omitted */ }

A stored style that can be applied.

Methods

impl Style[src]

pub fn new() -> Style[src]

Returns an empty default style.

pub fn from_dotted_str(s: &str) -> Style[src]

Creates a style from a dotted string.

Effectively the string is split at each dot and then the terms in between are applied. For instance red.on_blue will create a string that is red on blue background. Unknown terms are ignored.

pub fn apply_to<D>(&self, val: D) -> StyledObject<D>[src]

Apply the style to something that can be displayed.

pub fn force_styling(self, value: bool) -> Style[src]

Forces styling on or off.

This overrides the detection from clicolors-control.

pub fn for_stderr(self) -> Style[src]

Specifies that style is applying to something being written on stderr.

pub fn for_stdout(self) -> Style[src]

Specifies that style is applying to something being written on stdout.

This is the default behaviour.

pub fn fg(self, color: Color) -> Style[src]

Sets a foreground color.

pub fn bg(self, color: Color) -> Style[src]

Sets a background color.

pub fn attr(self, attr: Attribute) -> Style[src]

Adds a attr.

pub fn black(self) -> Style[src]

pub fn red(self) -> Style[src]

pub fn green(self) -> Style[src]

pub fn yellow(self) -> Style[src]

pub fn blue(self) -> Style[src]

pub fn magenta(self) -> Style[src]

pub fn cyan(self) -> Style[src]

pub fn white(self) -> Style[src]

pub fn bright(self) -> Style[src]

pub fn on_black(self) -> Style[src]

pub fn on_red(self) -> Style[src]

pub fn on_green(self) -> Style[src]

pub fn on_yellow(self) -> Style[src]

pub fn on_blue(self) -> Style[src]

pub fn on_magenta(self) -> Style[src]

pub fn on_cyan(self) -> Style[src]

pub fn on_white(self) -> Style[src]

pub fn on_bright(self) -> Style[src]

pub fn bold(self) -> Style[src]

pub fn dim(self) -> Style[src]

pub fn italic(self) -> Style[src]

pub fn underlined(self) -> Style[src]

pub fn reverse(self) -> Style[src]

pub fn hidden(self) -> Style[src]

Trait Implementations

impl Clone for Style[src]

impl Debug for Style[src]

impl Default for Style[src]

impl Eq for Style[src]

impl PartialEq<Style> for Style[src]

impl StructuralEq for Style[src]

impl StructuralPartialEq for Style[src]

Auto Trait Implementations

impl RefUnwindSafe for Style

impl Send for Style

impl Sync for Style

impl Unpin for Style

impl UnwindSafe for Style

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.