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

pub(crate) enum CarState {
    Crossing(TimeIntervalDistanceInterval),
    Queued {
        blocked_since: Time,
    },
    WaitingToAdvance {
        blocked_since: Time,
    },
    Unparking(DistanceParkingSpotTimeInterval),
    Parking(DistanceParkingSpotTimeInterval),
    IdlingAtStop(DistanceTimeInterval),
}

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

Variants

Crossing(TimeIntervalDistanceInterval)
Queued

Fields of Queued

blocked_since: Time
WaitingToAdvance

Fields of WaitingToAdvance

blocked_since: Time
Unparking(DistanceParkingSpotTimeInterval)

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

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