Struct lmdb::RoCursor [] [src]

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

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

Trait Implementations

impl<'txn> Cursor<'txn> for RoCursor<'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 RoCursor<'txn>
[src]

Formats the value using the given formatter.

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

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