Trait colors::Style [-]  [+] [src]

pub trait Style {
    fn style(self, style: Styles) -> String;
    fn reset(self) -> String;
    fn bold(self) -> String;
    fn dim(self) -> String;
    fn italic(self) -> String;
    fn underline(self) -> String;
    fn inverse(self) -> String;
    fn hidden(self) -> String;
    fn strikethrough(self) -> String;
    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 gray(self) -> String;
    fn grey(self) -> String;
    fn bg_black(self) -> String;
    fn bg_red(self) -> String;
    fn bg_green(self) -> String;
    fn bg_yellow(self) -> String;
    fn bg_blue(self) -> String;
    fn bg_magenta(self) -> String;
    fn bg_cyan(self) -> String;
    fn bg_white(self) -> String;
}

Required Methods

fn style(self, style: Styles) -> String

fn reset(self) -> String

fn bold(self) -> String

fn dim(self) -> String

fn italic(self) -> String

fn underline(self) -> String

fn inverse(self) -> String

fn hidden(self) -> String

fn strikethrough(self) -> String

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 gray(self) -> String

fn grey(self) -> String

fn bg_black(self) -> String

fn bg_red(self) -> String

fn bg_green(self) -> String

fn bg_yellow(self) -> String

fn bg_blue(self) -> String

fn bg_magenta(self) -> String

fn bg_cyan(self) -> String

fn bg_white(self) -> String

Implementors