pub enum Color<'a> {
Show 13 variants
Red,
Orange,
Yellow,
Green,
Turquoise,
Blue,
Violet,
Pink,
Brown,
Black,
Gray,
White,
Hex(Hex<'a>),
}
Expand description
Represents the desired photo color.
Variants§
Auto Trait Implementations§
impl<'a> Freeze for Color<'a>
impl<'a> RefUnwindSafe for Color<'a>
impl<'a> Send for Color<'a>
impl<'a> Sync for Color<'a>
impl<'a> Unpin for Color<'a>
impl<'a> UnwindSafe for Color<'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