Struct leveldb_rs::DBReadOptions [] [src]

pub struct DBReadOptions { /* fields omitted */ }

This structure represents options that can be used when reading from a LevelDB instance.

Methods

impl DBReadOptions
[src]

Create and return a new DBReadOptions instance. Returns None if the underlying library call returns a null pointer.

If set to 'true', all data read from the underlying storage will be verified against corresponding checksums.

Defaults to 'false'.

Set whether the data read for this iteration should be cached in memory.

Defaults to 'true'.

Trait Implementations

impl Drop for DBReadOptions
[src]

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