pub enum Colors {
}Expand description
Console Colors
This enum contains a member for every color, one for True Color via RGB, and a dummy to disable color in-place.
Variants§
None
Black
BlackBold
Red
RedBold
Green
GreenBold
Yellow
YellowBold
Blue
BlueBold
Magenta
MagentaBold
Cyan
CyanBold
White
WhiteBold
Rgb(u8, u8, u8)
RgbBold(u8, u8, u8)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Colors
impl RefUnwindSafe for Colors
impl Send for Colors
impl Sync for Colors
impl Unpin for Colors
impl UnwindSafe for Colors
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