pub struct EnvRo { /* private fields */ }
Expand description

Read-only handle for accessing environment that stores key-value databases

An environment can be opened using EnvBuilder.

Use EnvRo::open_db to retrieve database handles and EnvRo::txn_ro to start a read-only transaction.

It’s possible to clone the handle, in which case the environment will be closed when the last handle is dropped.

It’s also possible to create a read-only handle from a read-write handle (EnvRw) by invoking .clone(), which clones the referenced EnvRo through deref coercion (see example for EnvBuilder).

Implementations

Start read-only transaction

Get maximum size of keys and duplicate data

Checks if key or duplicate data has valid size

Open databases in environment

SAFETY: If a database exists already, it must have been created with compatible options.

Open database in environment

SAFETY: If a database exists already, it must have been created with compatible options.

Clear stale readers

Refer to LMDB’s documentation when to clear stale readers

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.