Trait owo_colors::DynColor[][src]

pub trait DynColor {
    fn fmt_ansi_fg(&self, f: &mut Formatter<'_>) -> Result;
fn fmt_ansi_bg(&self, f: &mut Formatter<'_>) -> Result; }
Expand description

A trait describing a runtime-configurable color which can displayed using FgDynColorDisplay or BgDynColorDisplay. If your color will be known at compile time it is recommended you avoid this.

Required methods

Implementors