pub enum LogColor {
Blue,
Green,
Red,
Black,
White,
Purple,
Yellow,
Custom {
r: u8,
g: u8,
b: u8,
},
}Variants§
Auto Trait Implementations§
impl Freeze for LogColor
impl RefUnwindSafe for LogColor
impl Send for LogColor
impl Sync for LogColor
impl Unpin for LogColor
impl UnwindSafe for LogColor
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