pub enum LaneMarkingType {
Unknown,
None,
Solid,
Broken,
SolidSolid,
SolidBroken,
BrokenSolid,
BrokenBroken,
BottsDots,
Grass,
Curb,
Edge,
}Expand description
LaneMarking classification options.
LaneMarkingType defines types of lane markings on the road.
Variants§
Unknown
None
Solid
Broken
SolidSolid
SolidBroken
BrokenSolid
BrokenBroken
BottsDots
Grass
Curb
Edge
Trait Implementations§
Source§impl Clone for LaneMarkingType
impl Clone for LaneMarkingType
Source§fn clone(&self) -> LaneMarkingType
fn clone(&self) -> LaneMarkingType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LaneMarkingType
impl Debug for LaneMarkingType
Source§impl Display for LaneMarkingType
impl Display for LaneMarkingType
Source§impl PartialEq for LaneMarkingType
impl PartialEq for LaneMarkingType
impl Copy for LaneMarkingType
impl Eq for LaneMarkingType
impl StructuralPartialEq for LaneMarkingType
Auto Trait Implementations§
impl Freeze for LaneMarkingType
impl RefUnwindSafe for LaneMarkingType
impl Send for LaneMarkingType
impl Sync for LaneMarkingType
impl Unpin for LaneMarkingType
impl UnwindSafe for LaneMarkingType
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