[rm-sled] Implement iterators in sqlite & lmdb transactions

with way too much unsafe code
This commit is contained in:
Alex Auvolat
2024-03-08 16:38:01 +01:00
parent 66c23890c1
commit b942949940
4 changed files with 195 additions and 28 deletions
+1
View File
@@ -51,6 +51,7 @@ pub type Result<T> = std::result::Result<T, Error>;
pub struct TxOpError(pub(crate) Error);
pub type TxOpResult<T> = std::result::Result<T, TxOpError>;
#[derive(Debug)]
pub enum TxError<E> {
Abort(E),
Db(Error),