Struct map_model::pathfind::walking::SidewalkPathfinder [−][src]
pub struct SidewalkPathfinder { graph: FastGraph, nodes: NodeMap<WalkingNode>, use_transit: bool, path_calc: ThreadLocal<RefCell<PathCalculator>>, }
Fields
graph: FastGraph
nodes: NodeMap<WalkingNode>
use_transit: bool
path_calc: ThreadLocal<RefCell<PathCalculator>>
Implementations
impl SidewalkPathfinder
[src]
impl SidewalkPathfinder
[src]pub fn new(
map: &Map,
use_transit: bool,
bus_graph: &VehiclePathfinder
) -> SidewalkPathfinder
[src]
map: &Map,
use_transit: bool,
bus_graph: &VehiclePathfinder
) -> SidewalkPathfinder
pub fn apply_edits(&mut self, map: &Map, bus_graph: &VehiclePathfinder)
[src]
pub fn pathfind(&self, req: PathRequest, map: &Map) -> Option<PathV2>
[src]
pub fn should_use_transit(
&self,
map: &Map,
start: Position,
end: Position
) -> Option<(BusStopID, Option<BusStopID>, BusRouteID)>
[src]
&self,
map: &Map,
start: Position,
end: Position
) -> Option<(BusStopID, Option<BusStopID>, BusRouteID)>
Attempt the pathfinding and see if we should ride a bus. If so, says (stop1, optional stop 2, route). If there’s no stop 2, then ride the bus off the border.
Trait Implementations
impl<'de> Deserialize<'de> for SidewalkPathfinder
[src]
impl<'de> Deserialize<'de> for SidewalkPathfinder
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Serialize for SidewalkPathfinder
[src]
impl Serialize for SidewalkPathfinder
[src]Auto Trait Implementations
impl RefUnwindSafe for SidewalkPathfinder
impl Send for SidewalkPathfinder
impl Sync for SidewalkPathfinder
impl Unpin for SidewalkPathfinder
impl UnwindSafe for SidewalkPathfinder
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>,