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