We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99c99e2 commit d3023e5Copy full SHA for d3023e5
crates/mdbx-remote/src/flags.rs
@@ -201,7 +201,7 @@ impl EnvironmentFlags {
201
202
bitflags! {
203
#[doc="Database options."]
204
- #[derive(Default)]
+ #[derive(Default, Clone, Copy)]
205
pub struct DatabaseFlags: MDBX_env_flags_t {
206
const REVERSE_KEY = MDBX_REVERSEKEY;
207
const DUP_SORT = MDBX_DUPSORT;
@@ -216,7 +216,7 @@ bitflags! {
216
217
218
#[doc="Write options."]
219
220
pub struct WriteFlags: MDBX_env_flags_t {
221
const UPSERT = MDBX_UPSERT;
222
const NO_OVERWRITE = MDBX_NOOVERWRITE;
0 commit comments