pub trait IPriorityHeap_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn get_empty(self) -> bool
where Self: Sized { ... }
fn ctor(self, initial_size: i32, leq: PriorityHeap_1_LessOrEqual<T0>)
where Self: Sized { ... }
fn float_down(self, curr: i32)
where Self: Sized { ... }
fn float_up(self, curr: i32)
where Self: Sized { ... }
fn init(self)
where Self: Sized { ... }
fn insert(self, value: T0) -> PQHandle
where Self: Sized { ... }
fn extract_min(self) -> T0
where Self: Sized { ... }
fn minimum(self) -> T0
where Self: Sized { ... }
fn remove(self, handle: PQHandle)
where Self: Sized { ... }
}Provided Methods§
fn get_empty(self) -> boolwhere
Self: Sized,
fn ctor(self, initial_size: i32, leq: PriorityHeap_1_LessOrEqual<T0>)where
Self: Sized,
fn float_down(self, curr: i32)where
Self: Sized,
fn float_up(self, curr: i32)where
Self: Sized,
fn init(self)where
Self: Sized,
fn insert(self, value: T0) -> PQHandlewhere
Self: Sized,
fn extract_min(self) -> T0where
Self: Sized,
fn minimum(self) -> T0where
Self: Sized,
fn remove(self, handle: PQHandle)where
Self: Sized,
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.