pub(super) struct LazyLeafRange<BorrowType, K, V> {
front: Option<LazyLeafHandle<BorrowType, K, V>>,
back: Option<LazyLeafHandle<BorrowType, K, V>>,
}
Fields§
§front: Option<LazyLeafHandle<BorrowType, K, V>>
§back: Option<LazyLeafHandle<BorrowType, K, V>>
Implementations§
Source§impl<BorrowType, K, V> LazyLeafRange<BorrowType, K, V>
impl<BorrowType, K, V> LazyLeafRange<BorrowType, K, V>
Source§impl<'a, K, V> LazyLeafRange<Immut<'a>, K, V>
impl<'a, K, V> LazyLeafRange<Immut<'a>, K, V>
pub(super) unsafe fn next_unchecked(&mut self) -> (&'a K, &'a V)
pub(super) unsafe fn next_back_unchecked(&mut self) -> (&'a K, &'a V)
Source§impl<'a, K, V> LazyLeafRange<ValMut<'a>, K, V>
impl<'a, K, V> LazyLeafRange<ValMut<'a>, K, V>
pub(super) unsafe fn next_unchecked(&mut self) -> (&'a K, &'a mut V)
pub(super) unsafe fn next_back_unchecked(&mut self) -> (&'a K, &'a mut V)
Source§impl<K, V> LazyLeafRange<Dying, K, V>
impl<K, V> LazyLeafRange<Dying, K, V>
fn take_front(&mut self) -> Option<Handle<NodeRef<Dying, K, V, Leaf>, Edge>>
pub(super) unsafe fn deallocating_next_unchecked<A: Allocator + Clone>( &mut self, alloc: A, ) -> Handle<NodeRef<Dying, K, V, LeafOrInternal>, KV>
pub(super) unsafe fn deallocating_next_back_unchecked<A: Allocator + Clone>( &mut self, alloc: A, ) -> Handle<NodeRef<Dying, K, V, LeafOrInternal>, KV>
pub(super) fn deallocating_end<A: Allocator + Clone>(&mut self, alloc: A)
Trait Implementations§
Source§impl<'a, K: 'a, V: 'a> Clone for LazyLeafRange<Immut<'a>, K, V>
impl<'a, K: 'a, V: 'a> Clone for LazyLeafRange<Immut<'a>, K, V>
Auto Trait Implementations§
impl<BorrowType, K, V> Freeze for LazyLeafRange<BorrowType, K, V>
impl<BorrowType, K, V> RefUnwindSafe for LazyLeafRange<BorrowType, K, V>
impl<BorrowType, K, V> !Send for LazyLeafRange<BorrowType, K, V>
impl<BorrowType, K, V> Sync for LazyLeafRange<BorrowType, K, V>
impl<BorrowType, K, V> Unpin for LazyLeafRange<BorrowType, K, V>where
BorrowType: Unpin,
impl<BorrowType, K, V> UnwindSafe for LazyLeafRange<BorrowType, 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)] const IS_ZST: bool = _
#[doc(hidden)] const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)Source§#[doc(hidden)] const LAYOUT: Layout = _
#[doc(hidden)] const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)Source§#[doc(hidden)] const MAX_SLICE_LEN: usize = _
#[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