pub struct NodePtr<V: Clone> { /* private fields */ }Expand description
A Ref-counted pointer to a Byte-Packed Node. Memory Layout: [ Header | Keys (MAX_KEYS) | Values/Children ] One contiguous allocation.
Trait Implementations§
Auto Trait Implementations§
impl<V> Freeze for NodePtr<V>where
PhantomData<V>: Freeze,
impl<V> RefUnwindSafe for NodePtr<V>where
PhantomData<V>: RefUnwindSafe,
impl<V> Send for NodePtr<V>where
PhantomData<V>: Send,
impl<V> Sync for NodePtr<V>where
PhantomData<V>: Sync,
impl<V> Unpin for NodePtr<V>where
PhantomData<V>: Unpin,
impl<V> UnsafeUnpin for NodePtr<V>where
PhantomData<V>: UnsafeUnpin,
impl<V> UnwindSafe for NodePtr<V>where
PhantomData<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