pub struct BTreeStore<K, V> { /* private fields */ }Expand description
Arena to store nodes from multiple b-trees.
Implementations§
Source§impl<K, V> BTreeStore<K, V>
impl<K, V> BTreeStore<K, V>
Trait Implementations§
Source§impl<K, V> BTreeStoreExt<K, V> for BTreeStore<K, V>
impl<K, V> BTreeStoreExt<K, V> for BTreeStore<K, V>
Source§unsafe fn tracing_gc<'a>(
&self,
b_trees: impl IntoIterator<Item = impl BTree<'a, K, V>>,
)where
K: 'a,
V: 'a,
unsafe fn tracing_gc<'a>(
&self,
b_trees: impl IntoIterator<Item = impl BTree<'a, K, V>>,
)where
K: 'a,
V: 'a,
Remove all allocated nodes which are not reachable through
b_trees iterator. Read moreAuto Trait Implementations§
impl<K, V> !Freeze for BTreeStore<K, V>
impl<K, V> !RefUnwindSafe for BTreeStore<K, V>
impl<K, V> !Send for BTreeStore<K, V>
impl<K, V> !Sync for BTreeStore<K, V>
impl<K, V> Unpin for BTreeStore<K, V>
impl<K, V> UnwindSafe for BTreeStore<K, V>
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