pub enum TerminalColorSupport {
Monochrome,
Classic8,
ColorCube256,
TrueColor,
}Expand description
Color support level, ranging from monochrome (color not supported) to 24-bit true color.
Variants§
Monochrome
Color is not supported.
Classic8
Classic ANSI 8 colors. Sometimes extendable to 16 by using bold.
ColorCube256
256 colors with a “color cube”. See Wikipedia for details.
TrueColor
24-bit “true color” support. See Wikipedia for details.
Trait Implementations§
source§impl Clone for TerminalColorSupport
impl Clone for TerminalColorSupport
source§fn clone(&self) -> TerminalColorSupport
fn clone(&self) -> TerminalColorSupport
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more