[][src]Trait ascetic_cli::Styled

pub trait Styled<S>: Into<WithStyle<S>> where
    S: AsRef<str>, 
{ fn red(self) -> WithStyle<S> { ... }
fn green(self) -> WithStyle<S> { ... }
fn yellow(self) -> WithStyle<S> { ... }
fn blue(self) -> WithStyle<S> { ... }
fn magenta(self) -> WithStyle<S> { ... }
fn cyan(self) -> WithStyle<S> { ... }
fn white(self) -> WithStyle<S> { ... }
fn bright_red(self) -> WithStyle<S> { ... }
fn bright_green(self) -> WithStyle<S> { ... }
fn bright_yellow(self) -> WithStyle<S> { ... }
fn bright_blue(self) -> WithStyle<S> { ... }
fn bright_magenta(self) -> WithStyle<S> { ... }
fn bright_cyan(self) -> WithStyle<S> { ... }
fn bright_white(self) -> WithStyle<S> { ... }
fn bold(self) -> WithStyle<S> { ... } }

Provided methods

fn red(self) -> WithStyle<S>

fn green(self) -> WithStyle<S>

fn yellow(self) -> WithStyle<S>

fn blue(self) -> WithStyle<S>

fn magenta(self) -> WithStyle<S>

fn cyan(self) -> WithStyle<S>

fn white(self) -> WithStyle<S>

fn bright_red(self) -> WithStyle<S>

fn bright_green(self) -> WithStyle<S>

fn bright_yellow(self) -> WithStyle<S>

fn bright_blue(self) -> WithStyle<S>

fn bright_magenta(self) -> WithStyle<S>

fn bright_cyan(self) -> WithStyle<S>

fn bright_white(self) -> WithStyle<S>

fn bold(self) -> WithStyle<S>

Loading content...

Implementors

impl<S, T> Styled<S> for T where
    S: AsRef<str>,
    T: Into<WithStyle<S>>, 
[src]

Loading content...