Enum sim::make::spawner::TripSpec[][src]

pub(crate) enum TripSpec {
    VehicleAppearing {
        start_pos: Position,
        goal: DrivingGoal,
        use_vehicle: CarID,
        retry_if_no_room: bool,
    },
    SpawningFailure {
        use_vehicle: Option<CarID>,
        error: String,
    },
    UsingParkedCar {
        car: CarID,
        start_bldg: BuildingID,
        goal: DrivingGoal,
    },
    JustWalking {
        start: SidewalkSpot,
        goal: SidewalkSpot,
    },
    UsingBike {
        bike: CarID,
        start: BuildingID,
        goal: DrivingGoal,
    },
    UsingTransit {
        start: SidewalkSpot,
        goal: SidewalkSpot,
        route: BusRouteID,
        stop1: BusStopID,
        maybe_stop2: Option<BusStopID>,
    },
}

Variants

VehicleAppearing

Can be used to spawn from a border or anywhere for interactive debugging.

Fields of VehicleAppearing

start_pos: Positiongoal: DrivingGoaluse_vehicle: CarID

This must be a currently off-map vehicle owned by the person.

retry_if_no_room: bool
SpawningFailure

Something went wrong spawning the trip.

Fields of SpawningFailure

use_vehicle: Option<CarID>error: String
UsingParkedCar

Fields of UsingParkedCar

car: CarID

This must be a currently parked vehicle owned by the person.

start_bldg: BuildingIDgoal: DrivingGoal
JustWalking

Fields of JustWalking

start: SidewalkSpotgoal: SidewalkSpot
UsingBike

Fields of UsingBike

bike: CarIDstart: BuildingIDgoal: DrivingGoal
UsingTransit

Fields of UsingTransit

start: SidewalkSpotgoal: SidewalkSpotroute: BusRouteIDstop1: BusStopIDmaybe_stop2: Option<BusStopID>

Implementations

impl TripSpec[src]

pub fn into_plan(self, map: &Map) -> (TripSpec, Vec<TripLeg>)[src]

pub fn maybe_new(
    from: TripEndpoint,
    to: TripEndpoint,
    mode: TripMode,
    use_vehicle: Option<CarID>,
    retry_if_no_room: bool,
    map: &Map
) -> Result<TripSpec>
[src]

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]

impl PartialEq<TripSpec> for TripSpec[src]

impl Serialize for TripSpec[src]

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]

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