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 { ... }
}