[][src]Struct map_model::make::initial::Road

pub struct Road {
    pub id: OriginalRoad,
    pub src_i: NodeID,
    pub dst_i: NodeID,
    pub trimmed_center_pts: PolyLine,
    pub half_width: Distance,
    pub lane_specs: Vec<LaneSpec>,
    pub osm_tags: Tags,
}

Fields

id: OriginalRoadsrc_i: NodeIDdst_i: NodeIDtrimmed_center_pts: PolyLinehalf_width: Distancelane_specs: Vec<LaneSpec>osm_tags: Tags

Implementations

impl Road[src]

pub fn new(id: OriginalRoad, r: &RawRoad, driving_side: DrivingSide) -> Road[src]

Auto Trait Implementations

impl RefUnwindSafe for Road

impl Send for Road

impl Sync for Road

impl Unpin for Road

impl UnwindSafe for Road

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,