pub enum Colors {
Enabled,
Disabled,
Auto,
}Expand description
Enum of the different color settings when printing to stdout/stderr.
Variants§
Enabled
Color printing is always enabled.
Disabled
Color printing is always disabled.
Auto
Color printing is automatic (if current terminal is a tty, print with colors, otherwise print without colors).
Trait Implementations§
impl Copy for Colors
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