[][src]Enum sim::TripSpec

pub enum TripSpec {
    VehicleAppearing {
        start_pos: Position,
        goal: DrivingGoal,
        use_vehicle: CarID,
        retry_if_no_room: bool,
        origin: Option<OffMapLocation>,
    },
    NoRoomToSpawn {
        i: IntersectionID,
        goal: DrivingGoal,
        use_vehicle: CarID,
        origin: Option<OffMapLocation>,
        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>,
    },
    Remote {
        from: OffMapLocation,
        to: OffMapLocation,
        trip_time: Duration,
        mode: TripMode,
    },
}

Variants

VehicleAppearing

Fields of VehicleAppearing

start_pos: Positiongoal: DrivingGoaluse_vehicle: CarIDretry_if_no_room: boolorigin: Option<OffMapLocation>
NoRoomToSpawn

Fields of NoRoomToSpawn

i: IntersectionIDgoal: DrivingGoaluse_vehicle: CarIDorigin: Option<OffMapLocation>error: String
UsingParkedCar

Fields of UsingParkedCar

car: CarIDstart_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>
Remote

Fields of Remote

from: OffMapLocationto: OffMapLocationtrip_time: Durationmode: TripMode

Implementations

impl TripSpec[src]

pub(crate) fn get_pathfinding_request(&self, map: &Map) -> Option<PathRequest>[src]

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