Struct map_model::pathfind::walking::SidewalkPathfinder [−][src]
pub struct SidewalkPathfinder {
nodes: NodeMap<WalkingNode>,
use_transit: bool,
engine: PathfindEngine,
}
Fields
nodes: NodeMap<WalkingNode>
use_transit: bool
engine: PathfindEngine
Implementations
pub fn new(
map: &Map,
use_transit: Option<(&VehiclePathfinder, &VehiclePathfinder)>,
engine: &CreateEngine<'_>
) -> SidewalkPathfinder
pub fn apply_edits(
&mut self,
map: &Map,
use_transit: Option<(&VehiclePathfinder, &VehiclePathfinder)>
)
pub fn should_use_transit(
&self,
map: &Map,
start: Position,
end: Position
) -> Option<(TransitStopID, Option<TransitStopID>, TransitRouteID)>
pub fn should_use_transit(
&self,
map: &Map,
start: Position,
end: Position
) -> Option<(TransitStopID, Option<TransitStopID>, TransitRouteID)>
Attempt the pathfinding and see if we should ride public transit. If so, says (stop1, optional stop 2, route). If there’s no stop 2, then ride transit off the border.
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
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
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self