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

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

An environment can be opened using EnvBuilder.

Use Env::open_db or EnvRw::create_db to retrieve database handles and EnvRw::txn_rw to start a read-write transaction.

It’s possible to create a read-only handle by invoking Env::clone_ro. The environment is closed when the last handle is dropped.

Implementations

Open databases in environment and create if non-existing

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

Open database in environment and create if non-existing

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

Delete database in environment

Start read-write transaction

Trait Implementations

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

Returns true if both handles refer to the same environment

This method tests for !=.

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 !=.

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 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.