pub enum ColorMode<'a> {
RGBA(&'a str),
RGB(&'a str),
HSLA(&'a str),
HSL(&'a str),
CMYK(&'a str),
HSV(&'a str),
HEX(&'a str),
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ColorMode<'a>
impl<'a> RefUnwindSafe for ColorMode<'a>
impl<'a> Send for ColorMode<'a>
impl<'a> Sync for ColorMode<'a>
impl<'a> Unpin for ColorMode<'a>
impl<'a> UnsafeUnpin for ColorMode<'a>
impl<'a> UnwindSafe for ColorMode<'a>
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