[][src]Trait asciicolor::Colorize

pub trait Colorize {
    fn black(self) -> String;
fn red(self) -> String;
fn green(self) -> String;
fn yellow(self) -> String;
fn blue(self) -> String;
fn magenta(self) -> String;
fn cyan(self) -> String;
fn white(self) -> String;
fn bright_black(self) -> String;
fn bright_red(self) -> String;
fn bright_green(self) -> String;
fn bright_yellow(self) -> String;
fn bright_blue(self) -> String;
fn bright_magenta(self) -> String;
fn bright_cyan(self) -> String;
fn bright_white(self) -> String;
fn underline(self) -> String;
fn bold(self) -> String;
fn invert(self) -> String; }

Required methods

fn black(self) -> String

fn red(self) -> String

fn green(self) -> String

fn yellow(self) -> String

fn blue(self) -> String

fn magenta(self) -> String

fn cyan(self) -> String

fn white(self) -> String

fn bright_black(self) -> String

fn bright_red(self) -> String

fn bright_green(self) -> String

fn bright_yellow(self) -> String

fn bright_blue(self) -> String

fn bright_magenta(self) -> String

fn bright_cyan(self) -> String

fn bright_white(self) -> String

fn underline(self) -> String

fn bold(self) -> String

fn invert(self) -> String

Loading content...

Implementors

impl<T: Display> Colorize for T[src]

Loading content...