Enum sim::events::Event[][src]

pub enum Event {
Show 20 variants CarReachedParkingSpot(CarIDParkingSpot), CarLeftParkingSpot(CarIDParkingSpot), BusArrivedAtStop(CarIDTransitRouteIDTransitStopID), BusDepartedFromStop(CarIDTransitRouteIDTransitStopID), PassengerBoardsTransit(PersonIDCarIDTransitRouteIDTransitStopIDDuration), PassengerAlightsTransit(PersonIDCarIDTransitRouteIDTransitStopID), PersonEntersBuilding(PersonIDBuildingID), PersonLeavesBuilding(PersonIDBuildingID), PersonLeavesMap(PersonIDOption<AgentID>, IntersectionID), PersonEntersMap(PersonIDAgentIDIntersectionID), PedReachedParkingSpot(PedestrianIDParkingSpot), BikeStoppedAtSidewalk(CarIDLaneID), ProblemEncountered(TripIDProblem), AgentEntersTraversable(AgentIDOption<TripID>, TraversableOption<usize>), IntersectionDelayMeasured(TripIDTurnIDAgentIDDuration), TripFinished { trip: TripID, mode: TripMode, total_time: Duration, blocked_time: Duration, }, TripCancelled(TripIDTripMode), TripPhaseStarting(TripIDPersonIDOption<PathRequest>, TripPhaseType), PathAmended(Path), Alert(AlertLocationString),
}
Expand description

As a simulation runs, different systems emit Events. This cleanly separates the internal mechanics of the simulation from consumers that just want to know what’s happening.

An Event always occurs at a particular time, plumbed separately to consumers.

Many of these were created for a test framework that’s been abandoned. They could be removed or have their API adjusted, but it’s not urgent; publishing an event that’s not used by Analytics has no performance impact.

Variants

CarReachedParkingSpot(CarIDParkingSpot)

Tuple Fields

0: CarID

CarLeftParkingSpot(CarIDParkingSpot)

Tuple Fields

0: CarID

BusArrivedAtStop(CarIDTransitRouteIDTransitStopID)

Tuple Fields

0: CarID

BusDepartedFromStop(CarIDTransitRouteIDTransitStopID)

Tuple Fields

0: CarID

PassengerBoardsTransit(PersonIDCarIDTransitRouteIDTransitStopIDDuration)

Tuple Fields

1: CarID

How long waiting at the stop?

PassengerAlightsTransit(PersonIDCarIDTransitRouteIDTransitStopID)

Tuple Fields

1: CarID

PersonEntersBuilding(PersonIDBuildingID)

Tuple Fields

PersonLeavesBuilding(PersonIDBuildingID)

Tuple Fields

PersonLeavesMap(PersonIDOption<AgentID>, IntersectionID)

Tuple Fields

None if cancelled

PersonEntersMap(PersonIDAgentIDIntersectionID)

Tuple Fields

PedReachedParkingSpot(PedestrianIDParkingSpot)

Tuple Fields

BikeStoppedAtSidewalk(CarIDLaneID)

Tuple Fields

0: CarID
1: LaneID

ProblemEncountered(TripIDProblem)

Tuple Fields

0: TripID

AgentEntersTraversable(AgentIDOption<TripID>, TraversableOption<usize>)

Tuple Fields

If the agent is a transit vehicle, then include a count of how many passengers are on board.

IntersectionDelayMeasured(TripIDTurnIDAgentIDDuration)

Tuple Fields

0: TripID
1: TurnID

TripID, TurnID (Where the delay was encountered), Time spent waiting at that turn

TripFinished

Fields

trip: TripID
mode: TripMode
total_time: Duration
blocked_time: Duration

TripCancelled(TripIDTripMode)

Tuple Fields

0: TripID

TripPhaseStarting(TripIDPersonIDOption<PathRequest>, TripPhaseType)

Tuple Fields

0: TripID

PathAmended(Path)

Tuple Fields

0: Path

Just use for parking replanning. Not happy about copying the full path in here, but the way to plumb info into Analytics is Event.

Alert(AlertLocationString)

Tuple Fields

1: String

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.