pub trait Decorized: Display {
    type Color: Color;
    fn decorized(&self) -> ColoredString { ... }
fn decorized_with_prefix(&self) -> ColoredString { ... } }

Associated Types

Provided methods

Implementations on Foreign Types

Implementors