pub struct BinaryHeapValueTree<T>(/* private fields */)
where
T: ValueTree,
T::Value: Ord;
Expand description
ValueTree
corresponding to BinaryHeapStrategy
.
Trait Implementations§
source§impl<T> Clone for BinaryHeapValueTree<T>
impl<T> Clone for BinaryHeapValueTree<T>
source§fn clone(&self) -> BinaryHeapValueTree<T>
fn clone(&self) -> BinaryHeapValueTree<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T> Debug for BinaryHeapValueTree<T>
impl<T> Debug for BinaryHeapValueTree<T>
source§impl<T> ValueTree for BinaryHeapValueTree<T>
impl<T> ValueTree for BinaryHeapValueTree<T>
source§type Value = BinaryHeap<<T as ValueTree>::Value>
type Value = BinaryHeap<<T as ValueTree>::Value>
The type of the value produced by this
ValueTree
.source§fn simplify(&mut self) -> bool
fn simplify(&mut self) -> bool
Attempts to simplify the current value. Notionally, this sets the
“high” value to the current value, and the current value to a “halfway
point” between high and low, rounding towards low. Read more
source§fn complicate(&mut self) -> bool
fn complicate(&mut self) -> bool
Attempts to partially undo the last simplification. Notionally, this
sets the “low” value to one plus the current value, and the current
value to a “halfway point” between high and the new low, rounding
towards low. Read more
Auto Trait Implementations§
impl<T> Freeze for BinaryHeapValueTree<T>
impl<T> RefUnwindSafe for BinaryHeapValueTree<T>where
T: RefUnwindSafe,
impl<T> Send for BinaryHeapValueTree<T>where
T: Send,
impl<T> Sync for BinaryHeapValueTree<T>where
T: Sync,
impl<T> Unpin for BinaryHeapValueTree<T>where
T: Unpin,
impl<T> UnwindSafe for BinaryHeapValueTree<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)