struct RawIteratorInner<K, V, const PREFIX_LEN: usize> {
start: NodePtr<PREFIX_LEN, LeafNode<K, V, PREFIX_LEN>>,
end: NodePtr<PREFIX_LEN, LeafNode<K, V, PREFIX_LEN>>,
}
Fields§
§start: NodePtr<PREFIX_LEN, LeafNode<K, V, PREFIX_LEN>>
§end: NodePtr<PREFIX_LEN, LeafNode<K, V, PREFIX_LEN>>
Trait Implementations§
Source§impl<K, V, const PREFIX_LEN: usize> Clone for RawIteratorInner<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> Clone for RawIteratorInner<K, V, PREFIX_LEN>
Source§impl<K, V, const PREFIX_LEN: usize> Debug for RawIteratorInner<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> Debug for RawIteratorInner<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> Copy for RawIteratorInner<K, V, PREFIX_LEN>
Auto Trait Implementations§
impl<K, V, const PREFIX_LEN: usize> Freeze for RawIteratorInner<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> RefUnwindSafe for RawIteratorInner<K, V, PREFIX_LEN>where
V: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, V, const PREFIX_LEN: usize> !Send for RawIteratorInner<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> !Sync for RawIteratorInner<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> Unpin for RawIteratorInner<K, V, PREFIX_LEN>
impl<K, V, const PREFIX_LEN: usize> UnwindSafe for RawIteratorInner<K, V, PREFIX_LEN>where
V: RefUnwindSafe,
K: RefUnwindSafe,
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