pub(crate) struct NonEmptyTree<K, V, const PREFIX_LEN: usize> {
pub(crate) root: OpaqueNodePtr<K, V, PREFIX_LEN>,
min_leaf: NodePtr<PREFIX_LEN, LeafNode<K, V, PREFIX_LEN>>,
max_leaf: NodePtr<PREFIX_LEN, LeafNode<K, V, PREFIX_LEN>>,
}
Fields§
§root: OpaqueNodePtr<K, V, PREFIX_LEN>
§min_leaf: NodePtr<PREFIX_LEN, LeafNode<K, V, PREFIX_LEN>>
§max_leaf: NodePtr<PREFIX_LEN, LeafNode<K, V, PREFIX_LEN>>
Auto Trait Implementations§
impl<K, V, const PREFIX_LEN: usize> Freeze for NonEmptyTree<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> RefUnwindSafe for NonEmptyTree<K, V, PREFIX_LEN>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V, const PREFIX_LEN: usize> !Send for NonEmptyTree<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> !Sync for NonEmptyTree<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> Unpin for NonEmptyTree<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> UnwindSafe for NonEmptyTree<K, V, PREFIX_LEN>
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