[][src]Struct sim::mechanics::car::Car

pub struct Car {
    pub vehicle: Vehicle,
    pub state: CarState,
    pub router: Router,
    pub trip_and_person: Option<(TripID, PersonID)>,
    pub started_at: Time,
    pub total_blocked_time: Duration,
    pub last_steps: VecDeque<Traversable>,
}

Fields

vehicle: Vehiclestate: CarStaterouter: Routertrip_and_person: Option<(TripID, PersonID)>started_at: Timetotal_blocked_time: Durationlast_steps: VecDeque<Traversable>

Implementations

impl Car[src]

pub fn crossing_state(
    &self,
    start_dist: Distance,
    start_time: Time,
    map: &Map
) -> CarState
[src]

pub fn crossing_state_with_end_dist(
    &self,
    dist_int: DistanceInterval,
    start_time: Time,
    map: &Map
) -> CarState
[src]

pub fn get_draw_car(
    &self,
    front: Distance,
    now: Time,
    map: &Map,
    transit: &TransitSimState
) -> DrawCarInput
[src]

pub fn is_parking(&self) -> bool[src]

Trait Implementations

impl Clone for Car[src]

impl Debug for Car[src]

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

impl Serialize for Car[src]

Auto Trait Implementations

impl RefUnwindSafe for Car

impl Send for Car

impl Sync for Car

impl Unpin for Car

impl UnwindSafe for Car

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: Send + Sync + Any

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