[][src]Trait rkv::backend::BackendRoTransaction

pub trait BackendRoTransaction: Debug {
    type Error: BackendError;
    type Database: BackendDatabase;
    fn get(&self, db: &Self::Database, key: &[u8]) -> Result<&[u8], Self::Error>;
fn abort(self); }

Associated Types

Loading content...

Required methods

fn get(&self, db: &Self::Database, key: &[u8]) -> Result<&[u8], Self::Error>

fn abort(self)

Loading content...

Implementors

impl<'t> BackendRoTransaction for rkv::backend::LmdbRoTransaction<'t>[src]

type Database = DatabaseImpl

type Error = ErrorImpl

impl<'t> BackendRoTransaction for rkv::backend::SafeModeRoTransaction<'t>[src]

type Database = DatabaseImpl

type Error = ErrorImpl

Loading content...