pub enum Color {
Ansi(AnsiColor),
Ansi256(Ansi256Color),
Rgb(RgbColor),
}
Expand description
Any ANSI color code scheme
Variants§
Ansi(AnsiColor)
Available 4-bit ANSI color palette codes
The user’s terminal defines the meaning of the each palette code.
Ansi256(Ansi256Color)
256 (8-bit) color support
Rgb(RgbColor)
24-bit ANSI RGB color codes
Implementations§
Trait Implementations§
source§impl From<Ansi256Color> for Color
impl From<Ansi256Color> for Color
source§fn from(inner: Ansi256Color) -> Self
fn from(inner: Ansi256Color) -> Self
Converts to this type from the input type.
source§impl Ord for Color
impl Ord for Color
source§impl PartialEq for Color
impl PartialEq for Color
source§impl PartialOrd for Color
impl PartialOrd for Color
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Color
impl Eq for Color
impl StructuralPartialEq for Color
Auto Trait Implementations§
impl Freeze for Color
impl RefUnwindSafe for Color
impl Send for Color
impl Sync for Color
impl Unpin for Color
impl UnwindSafe for Color
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more