Embassy
ekv

Crates

git

Versions

default

Flavors

Struct ekv::Cursor

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

Cursor for a range read.

Returned by ReadTransaction::read_all() and ReadTransaction::read_range().

Implementations§

source§

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

source

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

Get the next key/value entry.

If the cursor has not reached the end, the next entry in lexicographically ascending order is read into the start of the key and value buffers. The respective lengths are returned: Ok(Some((key_len, value_len))).

If the cursor has reached the end of the iteration, Ok(None) is returned.

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<'a, F, M> !UnwindSafe for Cursor<'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.