Struct map_model::Movement[][src]

pub struct Movement {
    pub id: MovementID,
    pub turn_type: TurnType,
    pub members: Vec<TurnID>,
    pub geom: PolyLine,
    pub angle: Angle,
}

A Movement groups all turns from one road to another, letting traffic signals operate at a higher level of abstraction. This is used for pathfinding and traffic signals currently; other places focus instead on turns.

Fields

id: MovementIDturn_type: TurnTypemembers: Vec<TurnID>geom: PolyLine

The “overall” path of movement, aka, an “average” of the turn geometry

angle: Angle

Implementations

impl Movement[src]

pub(crate) fn for_i(
    i: IntersectionID,
    map: &Map
) -> Result<BTreeMap<MovementID, Movement>>
[src]

pub fn src_center_and_width(&self, map: &Map) -> (PolyLine, Distance)[src]

Polyline points FROM intersection

pub fn conflicts_with(&self, other: &Movement) -> bool[src]

Trait Implementations

impl Clone for Movement[src]

impl Debug for Movement[src]

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

impl PartialEq<Movement> for Movement[src]

impl Serialize for Movement[src]

impl StructuralPartialEq for Movement[src]

Auto Trait Implementations

impl RefUnwindSafe for Movement

impl Send for Movement

impl Sync for Movement

impl Unpin for Movement

impl UnwindSafe for Movement

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