Constant lmdb::CURRENT []

pub const CURRENT: WriteFlags = WriteFlags{bits: MDB_CURRENT,}

For Cursor::put. Replace the item at the current cursor position. The key parameter must match the current position. If using sorted duplicates (DUP_SORT) the data item must still sort into the same position. This is intended to be used when the new data is the same size as the old. Otherwise it will simply perform a delete of the old record followed by an insert.