pub struct MinHeap<Node, Cost>{ /* private fields */ }Expand description
A binary min-heap implementation of the discovered set.
Trait Implementations§
Source§impl<Node, Cost> DiscoveredSet<Node, Cost> for MinHeap<Node, Cost>
impl<Node, Cost> DiscoveredSet<Node, Cost> for MinHeap<Node, Cost>
Auto Trait Implementations§
impl<Node, Cost> Freeze for MinHeap<Node, Cost>
impl<Node, Cost> RefUnwindSafe for MinHeap<Node, Cost>where
Node: RefUnwindSafe,
Cost: RefUnwindSafe,
impl<Node, Cost> Send for MinHeap<Node, Cost>
impl<Node, Cost> Sync for MinHeap<Node, Cost>
impl<Node, Cost> Unpin for MinHeap<Node, Cost>
impl<Node, Cost> UnsafeUnpin for MinHeap<Node, Cost>
impl<Node, Cost> UnwindSafe for MinHeap<Node, Cost>where
Node: UnwindSafe,
Cost: 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