pub enum LaneMarkingColor {
Unknown,
White,
Yellow,
Orange,
Red,
Blue,
Green,
Violet,
}Variants§
Trait Implementations§
Source§impl Clone for LaneMarkingColor
impl Clone for LaneMarkingColor
Source§fn clone(&self) -> LaneMarkingColor
fn clone(&self) -> LaneMarkingColor
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 LaneMarkingColor
Source§impl Debug for LaneMarkingColor
impl Debug for LaneMarkingColor
Source§impl Display for LaneMarkingColor
impl Display for LaneMarkingColor
impl Eq for LaneMarkingColor
Source§impl PartialEq for LaneMarkingColor
impl PartialEq for LaneMarkingColor
Source§fn eq(&self, other: &LaneMarkingColor) -> bool
fn eq(&self, other: &LaneMarkingColor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LaneMarkingColor
Auto Trait Implementations§
impl Freeze for LaneMarkingColor
impl RefUnwindSafe for LaneMarkingColor
impl Send for LaneMarkingColor
impl Sync for LaneMarkingColor
impl Unpin for LaneMarkingColor
impl UnsafeUnpin for LaneMarkingColor
impl UnwindSafe for LaneMarkingColor
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