We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e8319 commit f92b5adCopy full SHA for f92b5ad
heed/src/mdb/lmdb_flags.rs
@@ -28,7 +28,7 @@ bitflags! {
28
/// Use asynchronous msync when MDB_WRITEMAP is used.
29
const MAP_ASYNC = ffi::MDB_MAPASYNC;
30
/// Tie reader locktable slots to MDB_txn objects instead of to threads.
31
- #[deprecated(since="0.22.0", note="please use `Env::read_txn_with_tls` or `Env::read_txn_without_tls` instead")]
+ #[deprecated(since="0.22.0", note="please use `EnvOpenOptions::read_txn_with_tls` or `EnvOpenOptions::read_txn_without_tls` instead")]
32
const NO_TLS = ffi::MDB_NOTLS;
33
/// Don't do any locking, caller must manage their own locks.
34
const NO_LOCK = ffi::MDB_NOLOCK;
0 commit comments