Struct map_model::pathfind::v1::Path [−][src]
pub struct Path { steps: VecDeque<PathStep>, orig_req: PathRequest, total_length: Distance, crossed_so_far: Distance, uber_turns: VecDeque<UberTurn>, currently_inside_ut: Option<UberTurn>, blocked_starts: Vec<LaneID>, }
Fields
steps: VecDeque<PathStep>
orig_req: PathRequest
total_length: Distance
crossed_so_far: Distance
uber_turns: VecDeque<UberTurn>
currently_inside_ut: Option<UberTurn>
blocked_starts: Vec<LaneID>
Implementations
impl Path
[src]
impl Path
[src]pub(crate) fn new(
map: &Map,
steps: Vec<PathStep>,
orig_req: PathRequest,
uber_turns: Vec<UberTurn>,
blocked_starts: Vec<LaneID>
) -> Path
[src]
map: &Map,
steps: Vec<PathStep>,
orig_req: PathRequest,
uber_turns: Vec<UberTurn>,
blocked_starts: Vec<LaneID>
) -> Path
pub fn dist_crossed_from_step(&self, map: &Map, step: &PathStep) -> Distance
[src]
Once we finish this PathStep, how much distance will be crossed? If the step is at the beginning or end of our path, then the full length may not be used.
pub fn one_step(req: PathRequest, map: &Map) -> Path
[src]
pub fn get_req(&self) -> &PathRequest
[src]
The original PathRequest used to produce this path. If the path has been modified since creation, the start and end of the request won’t match up with the current path steps.
pub fn crossed_so_far(&self) -> Distance
[src]
pub fn total_length(&self) -> Distance
[src]
pub fn percent_dist_crossed(&self) -> f64
[src]
pub fn is_empty(&self) -> bool
[src]
pub fn is_last_step(&self) -> bool
[src]
pub fn isnt_last_step(&self) -> bool
[src]
pub fn currently_inside_ut(&self) -> &Option<UberTurn>
[src]
pub fn about_to_start_ut(&self) -> Option<&UberTurn>
[src]
pub fn shift(&mut self, map: &Map) -> PathStep
[src]
pub fn add(&mut self, step: PathStep, map: &Map)
[src]
pub fn is_upcoming_uber_turn_component(&self, t: TurnID) -> bool
[src]
pub fn modify_step(&mut self, idx: usize, step: PathStep, map: &Map)
[src]
Trusting the caller to do this in valid ways.
pub fn current_step(&self) -> PathStep
[src]
pub fn next_step(&self) -> PathStep
[src]
pub fn maybe_next_step(&self) -> Option<PathStep>
[src]
pub fn last_step(&self) -> PathStep
[src]
pub fn trace(&self, map: &Map) -> Option<PolyLine>
[src]
Traces along the path from its originally requested start. This is only valid to call for an umodified path.
pub fn trace_from_start(
&self,
map: &Map,
start_dist: Distance
) -> Option<PolyLine>
[src]
&self,
map: &Map,
start_dist: Distance
) -> Option<PolyLine>
Traces along the path from a specified distance along the first step until the end.
pub fn get_steps(&self) -> &VecDeque<PathStep>
[src]
pub fn estimate_duration(&self, map: &Map, max_speed: Option<Speed>) -> Duration
[src]
Estimate how long following the path will take in the best case, assuming no traffic or delay at intersections. To determine the speed along each step, the agent’s optional max_speed must be known.
pub fn get_blocked_starts(&self) -> Vec<LaneID>
[src]
If the agent following this path will initially block some intermediate lanes as they move
between a driveway and get_req().start
, then record them here.
pub fn get_total_elevation_change(&self, map: &Map) -> (Distance, Distance)
[src]
Returns the total elevation (gain, loss) experienced over the path.
Trait Implementations
impl<'de> Deserialize<'de> for Path
[src]
impl<'de> Deserialize<'de> for Path
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl StructuralPartialEq for Path
[src]
Auto Trait Implementations
impl RefUnwindSafe for Path
impl Send for Path
impl Sync for Path
impl Unpin for Path
impl UnwindSafe for Path
Blanket Implementations
impl<T> Instrument 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> Same<T> for T
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,