pub struct AsyncBinaryReaderItemsIteratorCheckpoint<'a, S: BucketItemSerializer>(/* private fields */);
Implementations§
Source§impl<'a, S: BucketItemSerializer> AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>
impl<'a, S: BucketItemSerializer> AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>
pub fn next(&mut self) -> Option<(S::ReadType<'_>, &mut S::ExtraDataBuffer)>
Auto Trait Implementations§
impl<'a, S> Freeze for AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>where
<S as BucketItemSerializer>::ReadBuffer: Freeze,
<S as BucketItemSerializer>::ExtraDataBuffer: Freeze,
S: Freeze,
impl<'a, S> !RefUnwindSafe for AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>
impl<'a, S> Send for AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>where
<S as BucketItemSerializer>::ReadBuffer: Send,
<S as BucketItemSerializer>::ExtraDataBuffer: Send,
S: Send,
impl<'a, S> Sync for AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>where
<S as BucketItemSerializer>::ReadBuffer: Sync,
<S as BucketItemSerializer>::ExtraDataBuffer: Sync,
S: Sync,
impl<'a, S> Unpin for AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>where
<S as BucketItemSerializer>::ReadBuffer: Unpin,
<S as BucketItemSerializer>::ExtraDataBuffer: Unpin,
S: Unpin,
impl<'a, S> !UnwindSafe for AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>
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