pub enum TrafficSignType {
Show 14 variants
Stop,
Yield,
SpeedLimit,
NoEntry,
OneWay,
PedestrianCrossing,
NoLeftTurn,
NoRightTurn,
NoUTurn,
SchoolZone,
Construction,
RailroadCrossing,
NoOvertaking,
Unknown,
}Expand description
Defines the possible traffic sign types.
Variants§
Stop
Yield
SpeedLimit
NoEntry
OneWay
PedestrianCrossing
NoLeftTurn
NoRightTurn
NoUTurn
SchoolZone
Construction
RailroadCrossing
NoOvertaking
Unknown
Trait Implementations§
Source§impl Clone for TrafficSignType
impl Clone for TrafficSignType
Source§fn clone(&self) -> TrafficSignType
fn clone(&self) -> TrafficSignType
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 TrafficSignType
impl Debug for TrafficSignType
Source§impl PartialEq for TrafficSignType
impl PartialEq for TrafficSignType
impl Copy for TrafficSignType
impl Eq for TrafficSignType
impl StructuralPartialEq for TrafficSignType
Auto Trait Implementations§
impl Freeze for TrafficSignType
impl RefUnwindSafe for TrafficSignType
impl Send for TrafficSignType
impl Sync for TrafficSignType
impl Unpin for TrafficSignType
impl UnsafeUnpin for TrafficSignType
impl UnwindSafe for TrafficSignType
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