pub enum OutputColor {
Off = 0,
Blue = 3,
Green = 5,
Red = 9,
White = 10,
}Variants§
Trait Implementations§
Source§impl Clone for OutputColor
impl Clone for OutputColor
Source§fn clone(&self) -> OutputColor
fn clone(&self) -> OutputColor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OutputColor
Auto Trait Implementations§
impl Freeze for OutputColor
impl RefUnwindSafe for OutputColor
impl Send for OutputColor
impl Sync for OutputColor
impl Unpin for OutputColor
impl UnsafeUnpin for OutputColor
impl UnwindSafe for OutputColor
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