Enum map_model::pathfind::pathfinder::PathfinderCaching
source · [−]pub enum PathfinderCaching {
NoCache,
CacheDijkstra,
CacheCH,
}
Expand description
When pathfinding with different RoutingParams
is done, a temporary pathfinder must be
created. This specifies what type of pathfinder and whether to cache it.
Variants
NoCache
Create a fast-to-build but slow-to-use Dijkstra-based pathfinder and don’t cache it
CacheDijkstra
Create a fast-to-build but slow-to-use Dijkstra-based pathfinder and cache it
CacheCH
Create a slow-to-build but fast-to-use contraction hierarchy-based pathfinder and cache it
Trait Implementations
sourceimpl Clone for PathfinderCaching
impl Clone for PathfinderCaching
sourcefn clone(&self) -> PathfinderCaching
fn clone(&self) -> PathfinderCaching
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<PathfinderCaching> for PathfinderCaching
impl PartialEq<PathfinderCaching> for PathfinderCaching
sourcefn eq(&self, other: &PathfinderCaching) -> bool
fn eq(&self, other: &PathfinderCaching) -> bool
impl Copy for PathfinderCaching
impl StructuralPartialEq for PathfinderCaching
Auto Trait Implementations
impl RefUnwindSafe for PathfinderCaching
impl Send for PathfinderCaching
impl Sync for PathfinderCaching
impl Unpin for PathfinderCaching
impl UnwindSafe for PathfinderCaching
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more