pub struct SkipListLayerIter<'a, K, V> { /* private fields */ }Trait Implementations§
Source§impl<K, V> Drop for SkipListLayerIter<'_, K, V>
impl<K, V> Drop for SkipListLayerIter<'_, K, V>
Source§impl<K: Key, V: LayerValue> LayerIterator<K, V> for SkipListLayerIter<'_, K, V>
impl<K: Key, V: LayerValue> LayerIterator<K, V> for SkipListLayerIter<'_, K, V>
Source§async fn advance(&mut self) -> Result<(), Error>
async fn advance(&mut self) -> Result<(), Error>
Advances the iterator (static dispatch, unboxed future).
Source§fn advance_dyn<'a>(
&'a mut self,
) -> Result<Option<BoxFuture<'a, Result<(), Error>>>, Error>
fn advance_dyn<'a>( &'a mut self, ) -> Result<Option<BoxFuture<'a, Result<(), Error>>>, Error>
Advances the iterator for dynamic dispatch (trait objects).
If the iterator advances synchronously, returns
Ok(None).Source§fn get(&self) -> Option<ItemRef<'_, K, V>>
fn get(&self) -> Option<ItemRef<'_, K, V>>
Returns the current item. This will be None if called when the iterator is first crated i.e.
before either seek or advance has been called, and None if the iterator has reached the end
of the layer.
impl<K, V> Send for SkipListLayerIter<'_, K, V>
impl<K, V> Sync for SkipListLayerIter<'_, K, V>
Auto Trait Implementations§
impl<'a, K, V> !RefUnwindSafe for SkipListLayerIter<'a, K, V>
impl<'a, K, V> !UnwindSafe for SkipListLayerIter<'a, K, V>
impl<'a, K, V> Freeze for SkipListLayerIter<'a, K, V>
impl<'a, K, V> Unpin for SkipListLayerIter<'a, K, V>
impl<'a, K, V> UnsafeUnpin for SkipListLayerIter<'a, K, V>
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<F, N> FidlIntoNative<Box<N>> for Fwhere
F: FidlIntoNative<N>,
impl<F, N> FidlIntoNative<Box<N>> for Fwhere
F: FidlIntoNative<N>,
fn fidl_into_native(self) -> Box<N>
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