pub struct RocksDBTransactionSnapshot<'a> { /* private fields */ }
Expand description
A snapshot captures a point-in-time view of the transaction at the time it’s created
Implementations§
Source§impl<'a> RocksDBTransactionSnapshot<'a>
impl<'a> RocksDBTransactionSnapshot<'a>
Sourcepub fn get_pinned(
&self,
col: Col,
key: &[u8],
) -> Result<Option<DBPinnableSlice<'_>>>
pub fn get_pinned( &self, col: Col, key: &[u8], ) -> Result<Option<DBPinnableSlice<'_>>>
Return the bytes associated with the given key and given column.
Trait Implementations§
Source§impl<'a> DBIterator for RocksDBTransactionSnapshot<'a>
impl<'a> DBIterator for RocksDBTransactionSnapshot<'a>
Source§fn iter_opt(
&self,
col: Col,
mode: IteratorMode<'_>,
readopts: &ReadOptions,
) -> Result<DBIter<'_>>
fn iter_opt( &self, col: Col, mode: IteratorMode<'_>, readopts: &ReadOptions, ) -> Result<DBIter<'_>>
Opens an iterator using the provided IteratorMode and ReadOptions.
This is used when you want to iterate over a specific ColumnFamily with a modified ReadOptions
Auto Trait Implementations§
impl<'a> Freeze for RocksDBTransactionSnapshot<'a>
impl<'a> RefUnwindSafe for RocksDBTransactionSnapshot<'a>
impl<'a> Send for RocksDBTransactionSnapshot<'a>
impl<'a> Sync for RocksDBTransactionSnapshot<'a>
impl<'a> Unpin for RocksDBTransactionSnapshot<'a>
impl<'a> UnwindSafe for RocksDBTransactionSnapshot<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more