Enum sim::TripEndpoint [−][src]
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]
from: TripEndpoint,
to: TripEndpoint,
mode: TripMode,
map: &Map
) -> Option<PathRequest>
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]
&self,
constraints: PathConstraints,
map: &Map
) -> Result<DrivingGoal>
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]
fn clone(&self) -> TripEndpoint
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for TripEndpoint
[src]
impl Debug for TripEndpoint
[src]
impl<'de> Deserialize<'de> for TripEndpoint
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Eq for TripEndpoint
[src]
impl Ord for TripEndpoint
[src]
fn cmp(&self, other: &TripEndpoint) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<TripEndpoint> for TripEndpoint
[src]
fn eq(&self, other: &TripEndpoint) -> bool
[src]
fn ne(&self, other: &TripEndpoint) -> bool
[src]
impl PartialOrd<TripEndpoint> for TripEndpoint
[src]
fn partial_cmp(&self, other: &TripEndpoint) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Serialize for TripEndpoint
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
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]
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,
pub 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,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Any + Send + Sync,
T: Any + Send + Sync,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[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.
pub fn to_owned(&self) -> T
[src]
pub 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.
pub 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.
pub 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>,