pub struct ShortestPathWithParent<G, S, P = RecordParent>{
pub dist: <G as VertexMap<S::T>>::Vmap,
pub parent: P::State,
}Fields§
§dist: <G as VertexMap<S::T>>::Vmap§parent: P::StateImplementations§
Auto Trait Implementations§
impl<G, S, P> Freeze for ShortestPathWithParent<G, S, P>where
<G as VertexMap<<S as ShortestPathSemiRing>::T>>::Vmap: Freeze,
<P as ParentPolicy<G>>::State: Freeze,
impl<G, S, P> RefUnwindSafe for ShortestPathWithParent<G, S, P>where
<G as VertexMap<<S as ShortestPathSemiRing>::T>>::Vmap: RefUnwindSafe,
<P as ParentPolicy<G>>::State: RefUnwindSafe,
impl<G, S, P> Send for ShortestPathWithParent<G, S, P>where
<G as VertexMap<<S as ShortestPathSemiRing>::T>>::Vmap: Send,
<P as ParentPolicy<G>>::State: Send,
impl<G, S, P> Sync for ShortestPathWithParent<G, S, P>where
<G as VertexMap<<S as ShortestPathSemiRing>::T>>::Vmap: Sync,
<P as ParentPolicy<G>>::State: Sync,
impl<G, S, P> Unpin for ShortestPathWithParent<G, S, P>where
<G as VertexMap<<S as ShortestPathSemiRing>::T>>::Vmap: Unpin,
<P as ParentPolicy<G>>::State: Unpin,
impl<G, S, P> UnwindSafe for ShortestPathWithParent<G, S, P>where
<G as VertexMap<<S as ShortestPathSemiRing>::T>>::Vmap: UnwindSafe,
<P as ParentPolicy<G>>::State: 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