pub struct Cursor<K: ?Sized, V: ?Sized, C> { /* private fields */ }
Expand description
Cursor for reading from or writing to a particular database
A new cursor can be created using Txn::new_cursor
. It is used by
invoking one of the cursor methods in Txn
or TxnRw
.
Implementations§
Trait Implementations§
impl<K: ?Sized, V: ?Sized, C> Eq for Cursor<K, V, C>
Auto Trait Implementations§
impl<K, V, C> Freeze for Cursor<K, V, C>
impl<K, V, C> RefUnwindSafe for Cursor<K, V, C>
impl<K, V, C> Send for Cursor<K, V, C>
impl<K, V, C> Sync for Cursor<K, V, C>
impl<K, V, C> Unpin for Cursor<K, V, C>
impl<K, V, C> UnwindSafe for Cursor<K, V, C>
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