[−][src]Enum sim::make::spawner::TripSpec
Variants
Can be used to spawn from a border or anywhere for interactive debugging.
Fields of VehicleAppearing
start_pos: Position
goal: DrivingGoal
use_vehicle: CarID
This must be a currently off-map vehicle owned by the person.
retry_if_no_room: bool
Something went wrong spawning the trip.
Fields of UsingParkedCar
car: CarID
This must be a currently parked vehicle owned by the person.
start_bldg: BuildingID
goal: DrivingGoal
Fields of JustWalking
start: SidewalkSpot
goal: SidewalkSpot
Fields of UsingBike
Fields of UsingTransit
start: SidewalkSpot
goal: SidewalkSpot
route: BusRouteID
stop1: BusStopID
maybe_stop2: Option<BusStopID>
Implementations
impl TripSpec
[src]
pub fn to_plan(
self,
person: PersonID,
info: TripInfo,
map: &Map
) -> (PersonID, TripInfo, TripSpec, Vec<TripLeg>)
[src]
self,
person: PersonID,
info: TripInfo,
map: &Map
) -> (PersonID, TripInfo, TripSpec, Vec<TripLeg>)
pub fn get_pathfinding_request(&self, map: &Map) -> Option<PathRequest>
[src]
pub fn maybe_new(
from: TripEndpoint,
to: TripEndpoint,
mode: TripMode,
use_vehicle: Option<CarID>,
retry_if_no_room: bool,
rng: &mut XorShiftRng,
map: &Map
) -> Result<TripSpec, String>
[src]
from: TripEndpoint,
to: TripEndpoint,
mode: TripMode,
use_vehicle: Option<CarID>,
retry_if_no_room: bool,
rng: &mut XorShiftRng,
map: &Map
) -> Result<TripSpec, String>
Turn an origin/destination pair and mode into a specific plan for instantiating a trip. Decisions like how to use public transit happen here.
Trait Implementations
impl Clone for TripSpec
[src]
impl Debug for TripSpec
[src]
impl<'de> Deserialize<'de> for TripSpec
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl PartialEq<TripSpec> for TripSpec
[src]
impl Serialize for TripSpec
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl StructuralPartialEq for TripSpec
[src]
Auto Trait Implementations
impl RefUnwindSafe for TripSpec
impl Send for TripSpec
impl Sync for TripSpec
impl Unpin for TripSpec
impl UnwindSafe for TripSpec
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>,