pub enum AsyncBinaryReaderIteratorData<'a, S: BucketItemSerializer> {
Stream(&'a mut AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>, Option<S::CheckpointData>),
Passtrough {
file_range: FileRangeReference,
checkpoint_data: Option<S::CheckpointData>,
},
}
Variants§
Stream(&'a mut AsyncBinaryReaderItemsIteratorCheckpoint<'a, S>, Option<S::CheckpointData>)
Passtrough
Auto Trait Implementations§
impl<'a, S> Freeze for AsyncBinaryReaderIteratorData<'a, S>
impl<'a, S> !RefUnwindSafe for AsyncBinaryReaderIteratorData<'a, S>
impl<'a, S> Send for AsyncBinaryReaderIteratorData<'a, S>where
<S as BucketItemSerializer>::CheckpointData: Send,
<S as BucketItemSerializer>::ReadBuffer: Send,
<S as BucketItemSerializer>::ExtraDataBuffer: Send,
S: Send,
impl<'a, S> Sync for AsyncBinaryReaderIteratorData<'a, S>where
<S as BucketItemSerializer>::CheckpointData: Sync,
<S as BucketItemSerializer>::ReadBuffer: Sync,
<S as BucketItemSerializer>::ExtraDataBuffer: Sync,
S: Sync,
impl<'a, S> Unpin for AsyncBinaryReaderIteratorData<'a, S>
impl<'a, S> !UnwindSafe for AsyncBinaryReaderIteratorData<'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