Struct BalancingContext

Source
pub(super) struct BalancingContext<'a, K, V> {
    parent: Handle<NodeRef<Mut<'a>, K, V, Internal>, KV>,
    left_child: NodeRef<Mut<'a>, K, V, LeafOrInternal>,
    right_child: NodeRef<Mut<'a>, K, V, LeafOrInternal>,
}
Expand description

Represents a session for evaluating and performing a balancing operation around an internal key-value pair.

Fields§

§parent: Handle<NodeRef<Mut<'a>, K, V, Internal>, KV>§left_child: NodeRef<Mut<'a>, K, V, LeafOrInternal>§right_child: NodeRef<Mut<'a>, K, V, LeafOrInternal>

Implementations§

Source§

impl<'a, K, V> BalancingContext<'a, K, V>

Source

pub(super) fn left_child_len(&self) -> usize

Source

pub(super) fn right_child_len(&self) -> usize

Source

pub(super) fn into_left_child(self) -> NodeRef<Mut<'a>, K, V, LeafOrInternal>

Source

pub(super) fn into_right_child(self) -> NodeRef<Mut<'a>, K, V, LeafOrInternal>

Source

pub(super) fn can_merge(&self) -> bool

Returns whether merging is possible, i.e., whether there is enough room in a node to combine the central KV with both adjacent child nodes.

Source§

impl<'a, K: 'a, V: 'a> BalancingContext<'a, K, V>

Source

fn do_merge<F: FnOnce(NodeRef<Mut<'a>, K, V, Internal>, NodeRef<Mut<'a>, K, V, LeafOrInternal>) -> R, R, A: Allocator>( self, result: F, alloc: A, ) -> R

Performs a merge and lets a closure decide what to return.

Source

pub(super) fn merge_tracking_parent<A: Allocator + Clone>( self, alloc: A, ) -> NodeRef<Mut<'a>, K, V, Internal>

Merges the parent’s key-value pair and both adjacent child nodes into the left child node and returns the shrunk parent node.

Panics unless we .can_merge().

Source

pub(super) fn merge_tracking_child<A: Allocator + Clone>( self, alloc: A, ) -> NodeRef<Mut<'a>, K, V, LeafOrInternal>

Merges the parent’s key-value pair and both adjacent child nodes into the left child node and returns that child node.

Panics unless we .can_merge().

Source

pub(super) fn merge_tracking_child_edge<A: Allocator + Clone>( self, track_edge_idx: LeftOrRight<usize>, alloc: A, ) -> Handle<NodeRef<Mut<'a>, K, V, LeafOrInternal>, Edge>

Merges the parent’s key-value pair and both adjacent child nodes into the left child node and returns the edge handle in that child node where the tracked child edge ended up,

Panics unless we .can_merge().

Source

pub(super) fn steal_left( self, track_right_edge_idx: usize, ) -> Handle<NodeRef<Mut<'a>, K, V, LeafOrInternal>, Edge>

Removes a key-value pair from the left child and places it in the key-value storage of the parent, while pushing the old parent key-value pair into the right child. Returns a handle to the edge in the right child corresponding to where the original edge specified by track_right_edge_idx ended up.

Source

pub(super) fn steal_right( self, track_left_edge_idx: usize, ) -> Handle<NodeRef<Mut<'a>, K, V, LeafOrInternal>, Edge>

Removes a key-value pair from the right child and places it in the key-value storage of the parent, while pushing the old parent key-value pair onto the left child. Returns a handle to the edge in the left child specified by track_left_edge_idx, which didn’t move.

Source

pub(super) fn bulk_steal_left(&mut self, count: usize)

This does stealing similar to steal_left but steals multiple elements at once.

Source

pub(super) fn bulk_steal_right(&mut self, count: usize)

The symmetric clone of bulk_steal_left.

Auto Trait Implementations§

§

impl<'a, K, V> Freeze for BalancingContext<'a, K, V>

§

impl<'a, K, V> RefUnwindSafe for BalancingContext<'a, K, V>

§

impl<'a, K, V> Send for BalancingContext<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Sync for BalancingContext<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Unpin for BalancingContext<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for BalancingContext<'a, K, V>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> SizedTypeProperties for T

Source§

#[doc(hidden)] const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
Source§

#[doc(hidden)] const LAYOUT: Layout = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)] const MAX_SLICE_LEN: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
The largest safe length for a [Self]. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.