Trait Colorize

Source
pub trait Colorize {
Show 19 methods // 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;
}

Required Methods§

Implementors§

Source§

impl<T> Colorize for T
where T: Display,