1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//! Transaction management and access.
//!
//! # Core Types (re-exported at crate root)
//!
//! - [`aliases::TxSync`] - Thread-safe synchronized transaction
//! - [`aliases::TxUnsync`] - Single-threaded unsynchronized transaction
//! - [`Cursor`] - Database cursor for navigating entries
//! - [`Database`] - Handle to an opened database
//! - [`Ro`], [`Rw`], [`RoSync`], [`RwSync`] - Transaction kind markers
//! - [`CommitLatency`] - Commit timing information
//!
//! # Type Aliases
//!
//! Convenience aliases for common transaction/cursor/iterator configurations
//! are available in [`aliases`]:
//! - [`aliases::RoTxSync`], [`aliases::RwTxSync`] - Synchronized transactions
//! - [`aliases::RoTxUnsync`], [`aliases::RwTxUnsync`] - Unsynchronized
//! transactions
//! - [`aliases::RoCursorSync`], [`aliases::RwCursorSync`] - Cursors for
//! synchronized transactions
//! - [`aliases::RoCursorUnsync`], [`aliases::RwCursorUnsync`] - Cursors for
//! unsynchronized transactions
//!
//! # Advanced: Writing Generic Code
//!
//! For users writing generic code over cursors or transactions, we recommend
//! reviewing the [`TransactionKind`], [`WriterKind`], and [`SyncKind`] traits,
//! as well as exploring the bounds on impl blocks for the various transaction
//! and cursor types.
pub use ;
pub use Cursor;
pub use Database;
pub use ;
pub use CommitLatency;
/// Raw operations on transactions.
pub use r#