[−][src]Struct sim::mechanics::car::Car
Represents a single vehicle. Note "car" is a misnomer; it could also be a bus or bike.
Fields
vehicle: Vehicle
state: CarState
router: Router
trip_and_person: Option<(TripID, PersonID)>
None for buses
started_at: Time
total_blocked_time: Duration
last_steps: VecDeque<Traversable>
In reverse order -- most recently left is first. The sum length of these must be >= vehicle.length.
Implementations
impl Car
[src]
pub fn crossing_state(
&self,
start_dist: Distance,
start_time: Time,
map: &Map
) -> CarState
[src]
&self,
start_dist: Distance,
start_time: Time,
map: &Map
) -> CarState
Assumes the current head of the path is the thing to cross.
pub fn crossing_state_with_end_dist(
&self,
dist_int: DistanceInterval,
start_time: Time,
map: &Map
) -> CarState
[src]
&self,
dist_int: DistanceInterval,
start_time: Time,
map: &Map
) -> CarState
pub fn get_draw_car(
&self,
front: Distance,
now: Time,
map: &Map,
transit: &TransitSimState
) -> DrawCarInput
[src]
&self,
front: Distance,
now: Time,
map: &Map,
transit: &TransitSimState
) -> DrawCarInput
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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> Downcast for T where
T: Any,
T: Any,
fn into_any(self: Box<T>) -> Box<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn as_any(&self) -> &(dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Send + Sync + Any,
T: Send + Sync + Any,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,