Enum map_model::pathfind::v1::PathStep [−][src]
Variants
Lane(LaneID)
Original direction
Tuple Fields of Lane
0: LaneID
ContraflowLane(LaneID)
Sidewalks only!
Tuple Fields of ContraflowLane
0: LaneID
Turn(TurnID)
Tuple Fields of Turn
0: TurnID
Implementations
fn exact_slice(
&self,
map: &Map,
start: Distance,
dist_ahead: Option<Distance>
) -> Result<PolyLine>
pub fn max_speed_along(
&self,
max_speed_on_flat_ground: Option<Speed>,
constraints: PathConstraints,
map: &Map
) -> Speed
pub fn max_speed_along(
&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_and_incline_along(
&self,
max_speed_on_flat_ground: Option<Speed>,
constraints: PathConstraints,
map: &Map
) -> (Speed, f64)
pub fn max_speed_and_incline_along(
&self,
max_speed_on_flat_ground: Option<Speed>,
constraints: PathConstraints,
map: &Map
) -> (Speed, f64)
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. Returns (speed, percent incline).
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for PathStep
impl UnwindSafe for PathStep
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> CallHasher for T where
T: Hash,
impl<T> CallHasher for T where
T: Hash,
Compare self to key
and return true
if they are equal.
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self