pub struct Node<V> {
pub kind: NodeKind,
pub slot_count: u16,
pub branches: Vec<Branch<V>>,
}Expand description
An Arctic adaptive node and its physical branches.
Fields§
§kind: NodeKindExact adaptive node representation.
slot_count: u16Number of physical slots initialized in the node header.
This can exceed the number of live branches after removals.
branches: Vec<Branch<V>>Live branches, including their physical edge slots.
Trait Implementations§
impl<V: Eq> Eq for Node<V>
impl<V: PartialEq> StructuralPartialEq for Node<V>
Auto Trait Implementations§
impl<V> Freeze for Node<V>
impl<V> RefUnwindSafe for Node<V>where
V: RefUnwindSafe,
impl<V> Send for Node<V>where
V: Send,
impl<V> Sync for Node<V>where
V: Sync,
impl<V> Unpin for Node<V>where
V: Unpin,
impl<V> UnsafeUnpin for Node<V>
impl<V> UnwindSafe for Node<V>where
V: 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