pub type FibHandle<K, V> = Index<Node<K, V>>;Expand description
A type-safe, Copy-able handle to a node in the FibHeap.
This handle is returned by FibHeap::push and is required for the
FibHeap::decrease_key operation. The handle remains valid as long
as the node it points to has not been popped from the heap.
Aliased Typeยง
pub struct FibHandle<K, V> { /* private fields */ }