pub enum DijkstraExhaustiveness {
Complete,
PartialNodeWeights,
PartialHeap,
}
Expand description
The exhaustiveness of an execution of Dijkstra’s algorithm. This can be complete, or partial because of reaching performance limits.
Note that the max_weight
parameter is not a performance limit, but a limit on the search space.
Variants
Complete
The search exhausted the search space.
PartialNodeWeights
The search was aborted early because the node weight data structure grew too large.
PartialHeap
The search was aborted early because the heap grew too large.
Trait Implementations
sourceimpl Clone for DijkstraExhaustiveness
impl Clone for DijkstraExhaustiveness
sourcefn clone(&self) -> DijkstraExhaustiveness
fn clone(&self) -> DijkstraExhaustiveness
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 more
sourceimpl Debug for DijkstraExhaustiveness
impl Debug for DijkstraExhaustiveness
impl Eq for DijkstraExhaustiveness
impl StructuralEq for DijkstraExhaustiveness
impl StructuralPartialEq for DijkstraExhaustiveness
Auto Trait Implementations
impl RefUnwindSafe for DijkstraExhaustiveness
impl Send for DijkstraExhaustiveness
impl Sync for DijkstraExhaustiveness
impl Unpin for DijkstraExhaustiveness
impl UnwindSafe for DijkstraExhaustiveness
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.