[][src]Struct rs_graph::shortestpath::binheap::BinHeap

pub struct BinHeap<K, ID = u32> { /* fields omitted */ }

Simply binary heap data structure.

Trait Implementations

impl<K, ID> Heap for BinHeap<K, ID> where
    K: Copy + PartialOrd,
    ID: PrimInt
[src]

type Item = ID

Type of items on the heap.

type Key = K

Type of keys.

Auto Trait Implementations

impl<K, ID> RefUnwindSafe for BinHeap<K, ID> where
    ID: RefUnwindSafe,
    K: RefUnwindSafe

impl<K, ID> Send for BinHeap<K, ID> where
    ID: Send,
    K: Send

impl<K, ID> Sync for BinHeap<K, ID> where
    ID: Sync,
    K: Sync

impl<K, ID> Unpin for BinHeap<K, ID> where
    ID: Unpin,
    K: Unpin

impl<K, ID> UnwindSafe for BinHeap<K, ID> where
    ID: UnwindSafe,
    K: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.