pub enum LayerColor {
None,
Red,
Orange,
Yellow,
Green,
Blue,
Violet,
Gray,
}Expand description
TS LayerColor.
Variants§
None
“none”
Red
“red”
Orange
“orange”
Yellow
“yellow”
Green
“green”
Blue
“blue”
Violet
“violet”
Gray
“gray”
Trait Implementations§
Source§impl Clone for LayerColor
impl Clone for LayerColor
Source§fn clone(&self) -> LayerColor
fn clone(&self) -> LayerColor
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 LayerColor
Source§impl Debug for LayerColor
impl Debug for LayerColor
impl Eq for LayerColor
Source§impl PartialEq for LayerColor
impl PartialEq for LayerColor
Source§fn eq(&self, other: &LayerColor) -> bool
fn eq(&self, other: &LayerColor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LayerColor
Auto Trait Implementations§
impl Freeze for LayerColor
impl RefUnwindSafe for LayerColor
impl Send for LayerColor
impl Sync for LayerColor
impl Unpin for LayerColor
impl UnsafeUnpin for LayerColor
impl UnwindSafe for LayerColor
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