Struct CursorMut
pub struct CursorMut<'a, K: 'a, V: 'a, A = Global> { pub(in ::collections::btree::map) inner: CursorMutKey<'a, K, V, A> }
A cursor over a BTreeMap with editing operations.
A Cursor is like an iterator, except that it can freely seek back-and-forth, and can
safely mutate the map during iteration. This is because the lifetime of its yielded
references is tied to its own lifetime, instead of just the underlying map. This means
cursors cannot yield multiple elements at once.
Cursors always point to a gap between two elements in the map, and can operate on the two immediately adjacent elements.
A CursorMut is created with the BTreeMap::lower_bound_mut and BTreeMap::upper_bound_mut
methods.
Fields
inner: CursorMutKey<'a, K, V, A>
Implementations
impl<'a, K, V, A> CursorMut<'a, K, V, A>
fn next(&mut self) -> Option<(&K, &mut V)>Advances the cursor to the next gap, returning the key and value of the element that it moved over.
If the cursor is already at the end of the map then
Noneis returned and the cursor is not moved.fn prev(&mut self) -> Option<(&K, &mut V)>Advances the cursor to the previous gap, returning the key and value of the element that it moved over.
If the cursor is already at the start of the map then
Noneis returned and the cursor is not moved.fn peek_next(&mut self) -> Option<(&K, &mut V)>Returns a reference to the key and value of the next element without moving the cursor.
If the cursor is at the end of the map then
Noneis returned.fn peek_prev(&mut self) -> Option<(&K, &mut V)>Returns a reference to the key and value of the previous element without moving the cursor.
If the cursor is at the start of the map then
Noneis returned.fn as_cursor(&self) -> Cursor<'_, K, V>Returns a read-only cursor pointing to the same location as the
CursorMut.The lifetime of the returned
Cursoris bound to that of theCursorMut, which means it cannot outlive theCursorMutand that theCursorMutis frozen for the lifetime of theCursor.unsafe fn with_mutable_key(self) -> CursorMutKey<'a, K, V, A>Converts the cursor into a
CursorMutKey, which allows mutating the key of elements in the tree.Safety
Since this cursor allows mutating keys, you must ensure that the
BTreeMapinvariants are maintained. Specifically:- The key of the newly inserted element must be unique in the tree.
- All keys in the tree must remain in sorted order.
impl<'a, K: Ord, V, A: Allocator + Clone> CursorMut<'a, K, V, A>
unsafe fn insert_after_unchecked(&mut self, key: K, value: V)Inserts a new key-value pair into the map in the gap that the cursor is currently pointing to.
After the insertion the cursor will be pointing at the gap after the newly inserted element.
Safety
You must ensure that the
BTreeMapinvariants are maintained. Specifically:- The key of the newly inserted element must be unique in the tree.
- All keys in the tree must remain in sorted order.
unsafe fn insert_before_unchecked(&mut self, key: K, value: V)Inserts a new key-value pair into the map in the gap that the cursor is currently pointing to.
After the insertion the cursor will be pointing at the gap after the newly inserted element.
Safety
You must ensure that the
BTreeMapinvariants are maintained. Specifically:- The key of the newly inserted element must be unique in the tree.
- All keys in the tree must remain in sorted order.
fn insert_after(&mut self, key: K, value: V) -> Result<(), UnorderedKeyError>Inserts a new key-value pair into the map in the gap that the cursor is currently pointing to.
After the insertion the cursor will be pointing at the gap before the newly inserted element.
If the inserted key is not greater than the key before the cursor (if any), or if it not less than the key after the cursor (if any), then an
UnorderedKeyErroris returned since this would invalidate theOrdinvariant between the keys of the map.fn insert_before(&mut self, key: K, value: V) -> Result<(), UnorderedKeyError>Inserts a new key-value pair into the map in the gap that the cursor is currently pointing to.
After the insertion the cursor will be pointing at the gap after the newly inserted element.
If the inserted key is not greater than the key before the cursor (if any), or if it not less than the key after the cursor (if any), then an
UnorderedKeyErroris returned since this would invalidate theOrdinvariant between the keys of the map.fn remove_next(&mut self) -> Option<(K, V)>Removes the next element from the
BTreeMap.The element that was removed is returned. The cursor position is unchanged (before the removed element).
fn remove_prev(&mut self) -> Option<(K, V)>Removes the preceding element from the
BTreeMap.The element that was removed is returned. The cursor position is unchanged (after the removed element).
Trait Implementations
impl<K: Debug, V: Debug, A> Debug for CursorMut<'_, K, V, A>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Auto Trait Implementations
impl<'a, K, V, A = Global> !UnwindSafe for CursorMut<'a, K, V, A>
impl<'a, K, V, A> Freeze for CursorMut<'a, K, V, A>
where
CursorMutKey<'a, K, V, A>: Freeze,
impl<'a, K, V, A> RefUnwindSafe for CursorMut<'a, K, V, A>
where
CursorMutKey<'a, K, V, A>: RefUnwindSafe,
impl<'a, K, V, A> Send for CursorMut<'a, K, V, A>
where
CursorMutKey<'a, K, V, A>: Send,
impl<'a, K, V, A> Sync for CursorMut<'a, K, V, A>
where
CursorMutKey<'a, K, V, A>: Sync,
impl<'a, K, V, A> Unpin for CursorMut<'a, K, V, A>
where
CursorMutKey<'a, K, V, A>: Unpin,
impl<'a, K, V, A> UnsafeUnpin for CursorMut<'a, K, V, A>
where
CursorMutKey<'a, K, V, A>: UnsafeUnpin,
Blanket Implementations
impl<T> Any for CursorMut<'a, K, V, A>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for CursorMut<'a, K, V, A>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for CursorMut<'a, K, V, A>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for CursorMut<'a, K, V, A>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> SizeHint for CursorMut<'a, K, V, A>
where
T: ?Sized,
fn lower_bound(&self) -> usizefn upper_bound(&self) -> Option<usize>
impl<T> SizedTypeProperties for CursorMut<'a, K, V, A>
impl<T, U> Into<U> for CursorMut<'a, K, V, A>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for CursorMut<'a, K, V, A>
where
U: Into<T>,
type Error = Infallible;fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for CursorMut<'a, K, V, A>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>