[][src]Trait rkv::backend::BackendRwCursorTransaction

pub trait BackendRwCursorTransaction<'t>: BackendRwTransaction {
    type RoCursor: BackendRoCursor<'t>;
    fn open_ro_cursor(
        &'t self,
        db: &Self::Database
    ) -> Result<Self::RoCursor, Self::Error>; }

Associated Types

Loading content...

Required methods

fn open_ro_cursor(
    &'t self,
    db: &Self::Database
) -> Result<Self::RoCursor, Self::Error>

Loading content...

Implementors

impl<'t> BackendRwCursorTransaction<'t> for rkv::backend::LmdbRwTransaction<'t>[src]

type RoCursor = RoCursorImpl<'t>

impl<'t> BackendRwCursorTransaction<'t> for rkv::backend::SafeModeRwTransaction<'t>[src]

type RoCursor = RoCursorImpl<'t>

Loading content...