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

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

Fields

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

Implementations

impl RawRoad[src]

pub fn get_geometry(
    &self,
    id: OriginalRoad,
    driving_side: DrivingSide
) -> (PolyLine, Distance)
[src]

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

impl Send for RawRoad

impl Sync for RawRoad

impl Unpin for RawRoad

impl UnwindSafe for RawRoad

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, U> Into<U> for T where
    U: From<T>, 
[src]

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