Struct traitgraph_algo::dijkstra::DijkstraStatus
source · [−]pub struct DijkstraStatus<DijkstraPerformance: DijkstraPerformanceData> {
pub exhaustiveness: DijkstraExhaustiveness,
pub performance_data: DijkstraPerformance,
}
Expand description
The final status of an execution of Dijkstra’s algorithm.
Fields
exhaustiveness: DijkstraExhaustiveness
The exhaustiveness of the search.
performance_data: DijkstraPerformance
The performance data collected during execution.
Trait Implementations
sourceimpl<DijkstraPerformance: Clone + DijkstraPerformanceData> Clone for DijkstraStatus<DijkstraPerformance>
impl<DijkstraPerformance: Clone + DijkstraPerformanceData> Clone for DijkstraStatus<DijkstraPerformance>
sourcefn clone(&self) -> DijkstraStatus<DijkstraPerformance>
fn clone(&self) -> DijkstraStatus<DijkstraPerformance>
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<DijkstraPerformance: Debug + DijkstraPerformanceData> Debug for DijkstraStatus<DijkstraPerformance>
impl<DijkstraPerformance: Debug + DijkstraPerformanceData> Debug for DijkstraStatus<DijkstraPerformance>
sourceimpl<DijkstraPerformance: PartialEq + DijkstraPerformanceData> PartialEq<DijkstraStatus<DijkstraPerformance>> for DijkstraStatus<DijkstraPerformance>
impl<DijkstraPerformance: PartialEq + DijkstraPerformanceData> PartialEq<DijkstraStatus<DijkstraPerformance>> for DijkstraStatus<DijkstraPerformance>
sourcefn eq(&self, other: &DijkstraStatus<DijkstraPerformance>) -> bool
fn eq(&self, other: &DijkstraStatus<DijkstraPerformance>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DijkstraStatus<DijkstraPerformance>) -> bool
fn ne(&self, other: &DijkstraStatus<DijkstraPerformance>) -> bool
This method tests for !=
.
impl<DijkstraPerformance: Eq + DijkstraPerformanceData> Eq for DijkstraStatus<DijkstraPerformance>
impl<DijkstraPerformance: DijkstraPerformanceData> StructuralEq for DijkstraStatus<DijkstraPerformance>
impl<DijkstraPerformance: DijkstraPerformanceData> StructuralPartialEq for DijkstraStatus<DijkstraPerformance>
Auto Trait Implementations
impl<DijkstraPerformance> RefUnwindSafe for DijkstraStatus<DijkstraPerformance> where
DijkstraPerformance: RefUnwindSafe,
impl<DijkstraPerformance> Send for DijkstraStatus<DijkstraPerformance> where
DijkstraPerformance: Send,
impl<DijkstraPerformance> Sync for DijkstraStatus<DijkstraPerformance> where
DijkstraPerformance: Sync,
impl<DijkstraPerformance> Unpin for DijkstraStatus<DijkstraPerformance> where
DijkstraPerformance: Unpin,
impl<DijkstraPerformance> UnwindSafe for DijkstraStatus<DijkstraPerformance> where
DijkstraPerformance: UnwindSafe,
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.