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: FastGraphnodes: NodeMap<WalkingNode>use_transit: boolpath_calc: ThreadLocal<RefCell<PathCalculator>>

Implementations

impl SidewalkPathfinder[src]

pub fn new(
    map: &Map,
    use_transit: bool,
    bus_graph: &VehiclePathfinder
) -> SidewalkPathfinder
[src]

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]

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 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,