Struct lmdb::Database [] [src]

pub struct Database { /* fields omitted */ }

A handle to an individual database in an environment.

A database handle denotes the name and parameters of a database in an environment.

Methods

impl Database
[src]

Returns the underlying LMDB database handle.

The caller must ensure that the handle is not used after the lifetime of the environment, or after the database has been closed.

Trait Implementations

impl Clone for Database
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Database
[src]

impl Debug for Database
[src]

Formats the value using the given formatter.

impl Eq for Database
[src]

impl PartialEq for Database
[src]

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

This method tests for !=.

impl Sync for Database
[src]

impl Send for Database
[src]