trait NodeCmp: Eq + Ord {
// Required methods
fn is_eof(&self) -> bool;
fn is_behind(&self, other: &Self) -> bool;
}
Expand description
A comparable node of the heap.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.