Enum sim::mechanics::car::CarState[][src]

pub(crate) enum CarState {
    Crossing {
        time_int: TimeInterval,
        dist_int: DistanceInterval,
        steep_uphill: bool,
    },
    ChangingLanes {
        from: LaneID,
        to: LaneID,
        new_time: TimeInterval,
        new_dist: DistanceInterval,
        lc_time: TimeInterval,
    },
    Queued {
        blocked_since: Time,
        want_to_change_lanes: Option<LaneID>,
    },
    WaitingToAdvance {
        blocked_since: Time,
    },
    Unparking {
        front: Distance,
        spot: ParkingSpot,
        time_int: TimeInterval,
        blocked_starts: Vec<LaneID>,
    },
    Parking(DistanceParkingSpotTimeInterval),
    IdlingAtStop(DistanceTimeInterval),
}

See https://a-b-street.github.io/docs/tech/trafficsim/discrete_event.html for details about the state machine encoded here.

Variants

Crossing
Show fields

Fields of Crossing

time_int: TimeIntervaldist_int: DistanceIntervalsteep_uphill: bool
ChangingLanes
Show fields

Fields of ChangingLanes

from: LaneIDto: LaneIDnew_time: TimeIntervalnew_dist: DistanceIntervallc_time: TimeInterval
Queued
Show fields

Fields of Queued

blocked_since: Timewant_to_change_lanes: Option<LaneID>
WaitingToAdvance
Show fields

Fields of WaitingToAdvance

blocked_since: Time
Unparking

Where’s the front of the car while this is happening?

Show fields

Fields of Unparking

front: Distancespot: ParkingSpottime_int: TimeIntervalblocked_starts: Vec<LaneID>
Parking(DistanceParkingSpotTimeInterval)
IdlingAtStop(DistanceTimeInterval)

Implementations

impl CarState[src]

pub fn get_end_time(&self) -> Time[src]

pub fn time_spent_waiting(&self, now: Time) -> Duration[src]

Trait Implementations

impl Clone for CarState[src]

impl Debug for CarState[src]

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

impl Serialize for CarState[src]

Auto Trait Implementations

impl RefUnwindSafe for CarState

impl Send for CarState

impl Sync for CarState

impl Unpin for CarState

impl UnwindSafe for CarState

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]