Trait linked_vector::CursorBase
source · pub trait CursorBase<T> {
// Required methods
fn get(&self) -> Option<&T>;
fn get_mut(&mut self) -> Option<&mut T>;
fn move_to(&mut self, handle: HNode) -> bool;
fn move_next(&mut self) -> Option<HNode>;
fn move_prev(&mut self) -> Option<HNode>;
fn move_to_start(&mut self) -> Option<HNode>;
fn move_to_end(&mut self) -> Option<HNode>;
fn forward(&mut self, n: usize) -> Result<HNode, HNode>;
fn backward(&mut self, n: usize) -> Result<HNode, HNode>;
}
Expand description
A cursor is a position within a linked vector. It can be used to traverse the list in either direction, and to access the element at the current position.
Required Methods§
sourcefn get(&self) -> Option<&T>
fn get(&self) -> Option<&T>
Returns a reference to the element at the cursor’s current position.
sourcefn get_mut(&mut self) -> Option<&mut T>
fn get_mut(&mut self) -> Option<&mut T>
Returns a mutable reference to the element at the cursor’s current position.
sourcefn move_to(&mut self, handle: HNode) -> bool
fn move_to(&mut self, handle: HNode) -> bool
Moves the cursor to the specified handle. Returns true if the cursor was moved, false if the handle was invalid.
sourcefn move_next(&mut self) -> Option<HNode>
fn move_next(&mut self) -> Option<HNode>
Moves the cursor to the next element. Returns the handle of the next element if the cursor was moved, None if the cursor was already at the end of the list.
sourcefn move_prev(&mut self) -> Option<HNode>
fn move_prev(&mut self) -> Option<HNode>
Moves the cursor to the previous element. Returns the handle of the previous element if the cursor was moved, None if the cursor was already at the start of the list.
sourcefn move_to_start(&mut self) -> Option<HNode>
fn move_to_start(&mut self) -> Option<HNode>
Moves the cursor to the start of the list. Returns the handle of the first element if the cursor was moved, None if the list is empty.
sourcefn move_to_end(&mut self) -> Option<HNode>
fn move_to_end(&mut self) -> Option<HNode>
Moves the cursor to the end of the list. Returns the handle of the last element if the cursor was moved, None if the list is empty.