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 Env::open_db to retrieve database handles and Env::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.

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

Start read-only transaction

Get new read-only handle for environment

Get maximum size of keys and duplicate data

Checks if key or duplicate data has valid size

Open databases in environment Read more

Clear stale readers Read more

Open database in environment 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 !=.

Returns true if both handles refer to the same environment

This method tests for !=.

Returns true if both handles refer to the same environment

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.