pub struct NodeCursor<'a, K, V> {
pub node: &'a Node<K, V>,
pub index: usize,
}Fields§
§node: &'a Node<K, V>§index: usizeTrait Implementations§
Source§impl<'a, K: Clone, V: Clone> Clone for NodeCursor<'a, K, V>
impl<'a, K: Clone, V: Clone> Clone for NodeCursor<'a, K, V>
Source§fn clone(&self) -> NodeCursor<'a, K, V>
fn clone(&self) -> NodeCursor<'a, K, V>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a, K: Copy, V: Copy> Copy for NodeCursor<'a, K, V>
Auto Trait Implementations§
impl<'a, K, V> Freeze for NodeCursor<'a, K, V>
impl<'a, K, V> RefUnwindSafe for NodeCursor<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for NodeCursor<'a, K, V>
impl<'a, K, V> Sync for NodeCursor<'a, K, V>
impl<'a, K, V> Unpin for NodeCursor<'a, K, V>
impl<'a, K, V> UnsafeUnpin for NodeCursor<'a, K, V>
impl<'a, K, V> UnwindSafe for NodeCursor<'a, K, V>where
K: RefUnwindSafe,
V: 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