Embassy
ekv

Crates

git

Versions

default

Flavors

Struct ekv::ReadTransaction

source ·
pub struct ReadTransaction<'a, F: Flash + 'a, M: RawMutex + 'a> { /* private fields */ }
Expand description

In-progress read transaction.

Implementations§

source§

impl<'a, F: Flash + 'a, M: RawMutex + 'a> ReadTransaction<'a, F, M>

source

pub async fn read( &self, key: &[u8], value: &mut [u8] ) -> Result<usize, ReadError<F::Error>>

Read a key from the database.

The value is stored in the value buffer, and the length is returned.

source

pub async fn read_all<'b>(&'b self) -> Result<Cursor<'b, F, M>, Error<F::Error>>

Get a cursor for reading all the keys in the database.

This is equivalent to calling read_range(..).

The cursor returns the keys in lexicographically ascending order.

source

pub async fn read_range<'b>( &'b self, range: impl RangeBounds<&'b [u8]> ) -> Result<Cursor<'b, F, M>, Error<F::Error>>

Get a cursor for reading keys in the database that are in the given range.

The cursor returns the keys in lexicographically ascending order.

Trait Implementations§

source§

impl<'a, F: Flash + 'a, M: RawMutex + 'a> Drop for ReadTransaction<'a, F, M>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a, F, M> Freeze for ReadTransaction<'a, F, M>

§

impl<'a, F, M> !RefUnwindSafe for ReadTransaction<'a, F, M>

§

impl<'a, F, M> Send for ReadTransaction<'a, F, M>
where M: Sync, F: Send,

§

impl<'a, F, M> Sync for ReadTransaction<'a, F, M>
where M: Sync, F: Send,

§

impl<'a, F, M> Unpin for ReadTransaction<'a, F, M>

§

impl<'a, F, M> !UnwindSafe for ReadTransaction<'a, F, M>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.