struct Cursor<'g, T> {
prev: ReadGuard<'g, Atomic<Node<T>>>,
curr: Shared<'g, Node<T>>,
}
Fields§
§prev: ReadGuard<'g, Atomic<Node<T>>>
§curr: Shared<'g, Node<T>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'g, T> Freeze for Cursor<'g, T>
impl<'g, T> RefUnwindSafe for Cursor<'g, T>where
T: RefUnwindSafe,
impl<'g, T> !Send for Cursor<'g, T>
impl<'g, T> !Sync for Cursor<'g, T>
impl<'g, T> Unpin for Cursor<'g, T>
impl<'g, T> UnwindSafe for Cursor<'g, T>where
T: 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