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

pub enum TripEndpoint {
    Bldg(BuildingID),
    Border(IntersectionID),
    SuddenlyAppear(Position),
}

Specifies where a trip begins or ends.

Variants

Bldg(BuildingID)
Border(IntersectionID)
SuddenlyAppear(Position)

Used for interactive spawning, tests, etc. For now, only valid as a trip’s start.

Implementations

impl TripEndpoint[src]

pub fn path_req(
    from: TripEndpoint,
    to: TripEndpoint,
    mode: TripMode,
    map: &Map
) -> Option<PathRequest>
[src]

Figure out a single PathRequest that goes between two TripEndpoints. Assume a single mode the entire time – no walking to a car before driving, for instance. The result probably won’t be exactly what would happen on a real trip between the endpoints because of this assumption.

fn start_sidewalk_spot(&self, map: &Map) -> Result<SidewalkSpot>[src]

fn end_sidewalk_spot(&self, map: &Map) -> Result<SidewalkSpot>[src]

fn driving_goal(
    &self,
    constraints: PathConstraints,
    map: &Map
) -> Result<DrivingGoal>
[src]

fn pos(self, mode: TripMode, from: bool, map: &Map) -> Option<Position>[src]

pub fn pt(&self, map: &Map) -> Pt2D[src]

Returns a point representing where this endpoint is.

Trait Implementations

impl Clone for TripEndpoint[src]

impl Copy for TripEndpoint[src]

impl Debug for TripEndpoint[src]

impl<'de> Deserialize<'de> for TripEndpoint[src]

impl Eq for TripEndpoint[src]

impl Ord for TripEndpoint[src]

impl PartialEq<TripEndpoint> for TripEndpoint[src]

impl PartialOrd<TripEndpoint> for TripEndpoint[src]

impl Serialize for TripEndpoint[src]

impl StructuralEq for TripEndpoint[src]

impl StructuralPartialEq for TripEndpoint[src]

Auto Trait Implementations

impl RefUnwindSafe for TripEndpoint

impl Send for TripEndpoint

impl Sync for TripEndpoint

impl Unpin for TripEndpoint

impl UnwindSafe for TripEndpoint

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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