[][src]Struct lmdb::RwCursor

pub struct RwCursor<'txn> { /* fields omitted */ }

A read-write cursor for navigating items within a database.

Implementations

impl<'txn> RwCursor<'txn>[src]

pub fn put<K, D>(&mut self, key: &K, data: &D, flags: WriteFlags) -> Result<()> where
    K: AsRef<[u8]>,
    D: AsRef<[u8]>, 
[src]

Puts a key/data pair into the database. The cursor will be positioned at the new data item, or on failure usually near it.

pub fn del(&mut self, flags: WriteFlags) -> Result<()>[src]

Deletes the current key/data pair.

Flags

WriteFlags::NO_DUP_DATA may be used to delete all data items for the current key, if the database was opened with DatabaseFlags::DUP_SORT.

Trait Implementations

impl<'txn> Cursor<'txn> for RwCursor<'txn>[src]

impl<'txn> Debug for RwCursor<'txn>[src]

impl<'txn> Drop for RwCursor<'txn>[src]

Auto Trait Implementations

impl<'txn> RefUnwindSafe for RwCursor<'txn>

impl<'txn> !Send for RwCursor<'txn>

impl<'txn> !Sync for RwCursor<'txn>

impl<'txn> Unpin for RwCursor<'txn>

impl<'txn> UnwindSafe for RwCursor<'txn>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.