[][src]Struct map_model::pathfind::driving::VehiclePathfinder

pub struct VehiclePathfinder {
    graph: FastGraph,
    nodes: NodeMap<Node>,
    uber_turns: Vec<UberTurn>,
    constraints: PathConstraints,
    path_calc: ThreadLocal<RefCell<PathCalculator>>,
}

Fields

graph: FastGraphnodes: NodeMap<Node>uber_turns: Vec<UberTurn>constraints: PathConstraintspath_calc: ThreadLocal<RefCell<PathCalculator>>

Implementations

impl VehiclePathfinder[src]

pub fn new(
    map: &Map,
    constraints: PathConstraints,
    seed: Option<&VehiclePathfinder>
) -> VehiclePathfinder
[src]

pub fn pathfind(&self, req: &PathRequest, map: &Map) -> Option<(Path, usize)>[src]

pub fn apply_edits(&mut self, map: &Map)[src]

Trait Implementations

impl<'de> Deserialize<'de> for VehiclePathfinder[src]

impl Serialize for VehiclePathfinder[src]

Auto Trait Implementations

impl RefUnwindSafe for VehiclePathfinder

impl Send for VehiclePathfinder

impl Sync for VehiclePathfinder

impl Unpin for VehiclePathfinder

impl UnwindSafe for VehiclePathfinder

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, U> Into<U> for T where
    U: From<T>, 
[src]

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>,