Trait orx_priority_queue::NodeKeyRef
source · pub trait NodeKeyRef<'a, N, K>where
N: 'a,
K: 'a,{
// Required methods
fn node(&self) -> &'a N;
fn key(&self) -> &'a K;
}
Expand description
Trait representing (node, key) pairs stored on priority queues.