Struct map_model::raw::RawRoad[][src]

pub struct RawRoad {
    pub center_points: Vec<Pt2D>,
    pub osm_tags: Tags,
    pub turn_restrictions: Vec<(RestrictionType, OriginalRoad)>,
    pub complicated_turn_restrictions: Vec<(OriginalRoad, OriginalRoad)>,
    pub percent_incline: f64,
}

Fields

center_points: Vec<Pt2D>

This is effectively a PolyLine, except there's a case where we need to plumb forward cul-de-sac roads for roundabout handling. No transformation of these points whatsoever has happened.

osm_tags: Tagsturn_restrictions: Vec<(RestrictionType, OriginalRoad)>complicated_turn_restrictions: Vec<(OriginalRoad, OriginalRoad)>

(via, to). For turn restrictions where 'via' is an entire road. Only BanTurns.

percent_incline: f64

Implementations

impl RawRoad[src]

pub fn get_geometry(
    &self,
    id: OriginalRoad,
    cfg: &MapConfig
) -> Result<(PolyLine, Distance)>
[src]

Returns the corrected center and total width

pub fn is_light_rail(&self) -> bool[src]

pub fn is_footway(&self) -> bool[src]

pub fn is_service(&self) -> bool[src]

Trait Implementations

impl Clone for RawRoad[src]

impl Debug for RawRoad[src]

impl<'de> Deserialize<'de> for RawRoad[src]

impl PartialEq<RawRoad> for RawRoad[src]

impl Serialize for RawRoad[src]

impl StructuralPartialEq for RawRoad[src]

Auto Trait Implementations

impl RefUnwindSafe for RawRoad[src]

impl Send for RawRoad[src]

impl Sync for RawRoad[src]

impl Unpin for RawRoad[src]

impl UnwindSafe for RawRoad[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,