Struct lmdb::RwCursor [] [src]

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

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

Methods

impl<'txn> RwCursor<'txn>
[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.

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]

Returns a raw pointer to the underlying LMDB cursor. Read more

Retrieves a key/data pair from the cursor. Depending on the cursor op, the current key may be returned. Read more

Iterate over database items. The iterator will begin with item next after the cursor, and continue until the end of the database. For new cursors, the iterator will begin with the first item in the database. Read more

Iterate over database items starting from the beginning of the database. Read more

Iterate over database items starting from the given key. Read more

Iterate over duplicate database items. The iterator will begin with the item next after the cursor, and continue until the end of the database. Each item will be returned as an iterator of its duplicates. Read more

Iterate over duplicate database items starting from the beginning of the database. Each item will be returned as an iterator of its duplicates. Read more

Iterate over duplicate items in the database starting from the given key. Each item will be returned as an iterator of its duplicates. Read more

Iterate over the duplicates of the item in the database with the given key. Read more

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

Formats the value using the given formatter.

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

A method called when the value goes out of scope. Read more