Trait hel_colored::Colored

source ·
pub trait Coloredwhere
    Self: Sized,{
    type Output;

Show 16 methods // Provided methods fn blue(self) -> Self::Output { ... } fn cyan(self) -> Self::Output { ... } fn green(self) -> Self::Output { ... } fn magenta(self) -> Self::Output { ... } fn orange(self) -> Self::Output { ... } fn red(self) -> Self::Output { ... } fn yellow(self) -> Self::Output { ... } fn on_blue(self) -> Self::Output { ... } fn on_cyan(self) -> Self::Output { ... } fn on_green(self) -> Self::Output { ... } fn on_magenta(self) -> Self::Output { ... } fn on_orange(self) -> Self::Output { ... } fn on_red(self) -> Self::Output { ... } fn on_yellow(self) -> Self::Output { ... } fn rgb(self, rgb: (u8, u8, u8)) -> Self::Output { ... } fn on_rgb(self, rgb: (u8, u8, u8)) -> Self::Output { ... }
}

Required Associated Types§

Provided Methods§

source

fn blue(self) -> Self::Output

source

fn cyan(self) -> Self::Output

source

fn green(self) -> Self::Output

source

fn magenta(self) -> Self::Output

source

fn orange(self) -> Self::Output

source

fn red(self) -> Self::Output

source

fn yellow(self) -> Self::Output

source

fn on_blue(self) -> Self::Output

source

fn on_cyan(self) -> Self::Output

source

fn on_green(self) -> Self::Output

source

fn on_magenta(self) -> Self::Output

source

fn on_orange(self) -> Self::Output

source

fn on_red(self) -> Self::Output

source

fn on_yellow(self) -> Self::Output

source

fn rgb(self, rgb: (u8, u8, u8)) -> Self::Output

source

fn on_rgb(self, rgb: (u8, u8, u8)) -> Self::Output

Implementors§