Struct std::collections::linked_list::Cursor
source · [−]pub struct Cursor<'a, T> where
T: 'a, { /* private fields */ }Expand description
A cursor over a LinkedList.
A Cursor is like an iterator, except that it can freely seek back-and-forth.
Cursors always rest between two elements in the list, and index in a logically circular way.
To accommodate this, there is a “ghost” non-element that yields None between the head and
tail of the list.
When created, cursors start at the front of the list, or the “ghost” non-element if the list is empty.
Implementations
impl<'a, T> Cursor<'a, T>
source
impl<'a, T> Cursor<'a, T>
sourcepub fn index(&self) -> Option<usize>
source
pub fn index(&self) -> Option<usize>
sourceReturns the cursor position index within the LinkedList.
This returns None if the cursor is currently pointing to the
“ghost” non-element.
pub fn move_next(&mut self)
source
pub fn move_next(&mut self)
sourceMoves the cursor to the next element of the LinkedList.
If the cursor is pointing to the “ghost” non-element then this will move it to
the first element of the LinkedList. If it is pointing to the last
element of the LinkedList then this will move it to the “ghost” non-element.
pub fn move_prev(&mut self)
source
pub fn move_prev(&mut self)
sourceMoves the cursor to the previous element of the LinkedList.
If the cursor is pointing to the “ghost” non-element then this will move it to
the last element of the LinkedList. If it is pointing to the first
element of the LinkedList then this will move it to the “ghost” non-element.
pub fn current(&self) -> Option<&'a T>
source
pub fn current(&self) -> Option<&'a T>
sourceReturns a reference to the element that the cursor is currently pointing to.
This returns None if the cursor is currently pointing to the
“ghost” non-element.
pub fn peek_next(&self) -> Option<&'a T>
source
pub fn peek_next(&self) -> Option<&'a T>
sourceReturns a reference to the next element.
If the cursor is pointing to the “ghost” non-element then this returns
the first element of the LinkedList. If it is pointing to the last
element of the LinkedList then this returns None.
pub fn peek_prev(&self) -> Option<&'a T>
source
pub fn peek_prev(&self) -> Option<&'a T>
sourceReturns a reference to the previous element.
If the cursor is pointing to the “ghost” non-element then this returns
the last element of the LinkedList. If it is pointing to the first
element of the LinkedList then this returns None.
Trait Implementations
impl<'_, T> Send for Cursor<'_, T> where
T: Sync,
sourceimpl<'_, T> Sync for Cursor<'_, T> where
T: Sync,
sourceAuto Trait Implementations
impl<'a, T> RefUnwindSafe for Cursor<'a, T> where
T: RefUnwindSafe,
impl<'a, T> Unpin for Cursor<'a, T>
impl<'a, T> UnwindSafe for Cursor<'a, T> where
T: RefUnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
source
impl<T> ToOwned for T where
T: Clone,
sourcetype Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
source
fn clone_into(&self, target: &mut T)
sourceUses borrowed data to replace owned data, usually by cloning. Read more