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§
source§impl<DijkstraPerformance: Clone + DijkstraPerformanceData> Clone for DijkstraStatus<DijkstraPerformance>
impl<DijkstraPerformance: Clone + DijkstraPerformanceData> Clone for DijkstraStatus<DijkstraPerformance>
source§fn clone(&self) -> DijkstraStatus<DijkstraPerformance>
fn clone(&self) -> DijkstraStatus<DijkstraPerformance>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<DijkstraPerformance: Debug + DijkstraPerformanceData> Debug for DijkstraStatus<DijkstraPerformance>
impl<DijkstraPerformance: Debug + DijkstraPerformanceData> Debug for DijkstraStatus<DijkstraPerformance>
source§impl<DijkstraPerformance: PartialEq + DijkstraPerformanceData> PartialEq<DijkstraStatus<DijkstraPerformance>> for DijkstraStatus<DijkstraPerformance>
impl<DijkstraPerformance: PartialEq + DijkstraPerformanceData> PartialEq<DijkstraStatus<DijkstraPerformance>> for DijkstraStatus<DijkstraPerformance>
source§fn 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 ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.