1 2 3 4 5 6 7 8 9 10 11
The implementation that allows the Colors Enum to a &str value # Examples ```rust use colorized::Colors; fn main() { assert_eq!(Colors::BlueFg.value(), "\x1b[34m") } ```