Trait addressable_pairing_heap::Key [] [src]

pub trait Key: Copy + PartialOrd + Ord { }

Represents a trait for keys within an addressable pairing heap.

A user can use custom type for the key type by implementing this trait.

This trait is implicitely implemented already for all types that are Copy, PartialOrd and Ord.

Implementors