Trait bheap::Uid[][src]

pub trait Uid {
    fn uid(&self) -> u64;
}
Expand description

Trait to uniquely identify elements in bheap.

Required methods

Unique identifier for the implementing struct. The same value must be returned in all invocations of this method on a given struct.

Implementors