Enum map_model::Traversable [−][src]
Either a lane or a turn, where most movement happens.
Variants
Lane(LaneID)
Turn(TurnID)
Implementations
impl Traversable
[src]
pub fn as_lane(&self) -> LaneID
[src]
pub fn as_turn(&self) -> TurnID
[src]
pub fn maybe_turn(&self) -> Option<TurnID>
[src]
pub fn maybe_lane(&self) -> Option<LaneID>
[src]
pub fn get_polyline(self, map: &Map) -> &PolyLine
[src]
Return the center-line geometry of this lane or turn.
pub fn get_zorder(&self, map: &Map) -> isize
[src]
pub fn max_speed_along(
&self,
max_speed_on_flat_ground: Option<Speed>,
constraints: PathConstraints,
map: &Map
) -> Speed
[src]
&self,
max_speed_on_flat_ground: Option<Speed>,
constraints: PathConstraints,
map: &Map
) -> Speed
The single definitive place to determine how fast somebody could go along a single road or turn. This should be used for pathfinding and simulation.
pub fn max_speed_along_road(
dr: DirectedRoadID,
max_speed_on_flat_ground: Option<Speed>,
constraints: PathConstraints,
map: &Map
) -> Speed
[src]
dr: DirectedRoadID,
max_speed_on_flat_ground: Option<Speed>,
constraints: PathConstraints,
map: &Map
) -> Speed
The single definitive place to determine how fast somebody could go along a single road. This should be used for pathfinding and simulation.
pub fn max_speed_along_movement(
mvmnt: MovementID,
max_speed_on_flat_ground: Option<Speed>,
_: PathConstraints,
map: &Map
) -> Speed
[src]
mvmnt: MovementID,
max_speed_on_flat_ground: Option<Speed>,
_: PathConstraints,
map: &Map
) -> Speed
The single definitive place to determine how fast somebody could go along a single movement. This should be used for pathfinding and simulation.
Trait Implementations
impl Clone for Traversable
[src]
fn clone(&self) -> Traversable
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Traversable
[src]
impl Debug for Traversable
[src]
impl<'de> Deserialize<'de> for Traversable
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Display for Traversable
[src]
impl Eq for Traversable
[src]
impl Hash for Traversable
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Ord for Traversable
[src]
fn cmp(&self, other: &Traversable) -> 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<Traversable> for Traversable
[src]
fn eq(&self, other: &Traversable) -> bool
[src]
fn ne(&self, other: &Traversable) -> bool
[src]
impl PartialOrd<Traversable> for Traversable
[src]
fn partial_cmp(&self, other: &Traversable) -> 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 Traversable
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl StructuralEq for Traversable
[src]
impl StructuralPartialEq for Traversable
[src]
Auto Trait Implementations
impl RefUnwindSafe for Traversable
impl Send for Traversable
impl Sync for Traversable
impl Unpin for Traversable
impl UnwindSafe for Traversable
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> CallHasher for T where
T: Hash,
T: Hash,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
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, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<N> NodeTrait for N where
N: Copy + Ord + Hash,
[src]
N: Copy + Ord + Hash,
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> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
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>,