[][src]Struct map_model::objects::stop_signs::ControlStopSign

pub struct ControlStopSign {
    pub id: IntersectionID,
    pub roads: BTreeMap<RoadID, RoadWithStopSign>,
}

Fields

id: IntersectionIDroads: BTreeMap<RoadID, RoadWithStopSign>

Implementations

impl ControlStopSign[src]

pub fn new(map: &Map, id: IntersectionID) -> ControlStopSign[src]

pub fn get_priority(&self, turn: TurnID, map: &Map) -> TurnPriority[src]

Get the priority of a turn according to the stop sign -- either protected or yield, never banned.

pub fn flip_sign(&mut self, r: RoadID)[src]

Trait Implementations

impl Clone for ControlStopSign[src]

impl Debug for ControlStopSign[src]

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

impl PartialEq<ControlStopSign> for ControlStopSign[src]

impl Serialize for ControlStopSign[src]

impl StructuralPartialEq for ControlStopSign[src]

Auto Trait Implementations

impl RefUnwindSafe for ControlStopSign[src]

impl Send for ControlStopSign[src]

impl Sync for ControlStopSign[src]

impl Unpin for ControlStopSign[src]

impl UnwindSafe for ControlStopSign[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, 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>,