pub struct BedParserParallelStreamingIterator<V> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<V: Send + 'static> BBIDataSource for BedParserParallelStreamingIterator<V>
impl<V: Send + 'static> BBIDataSource for BedParserParallelStreamingIterator<V>
type Value = V
type Error = BedValueError
fn process_to_bbi<P: BBIDataProcessor<Value = Self::Value> + Send + 'static, StartProcessing: FnMut(String) -> Result<P, ProcessDataError>, Advance: FnMut(P)>( &mut self, runtime: &Runtime, start_processing: &mut StartProcessing, advance: &mut Advance, ) -> Result<(), BBIProcessError<Self::Error>>
Auto Trait Implementations§
impl<V> Freeze for BedParserParallelStreamingIterator<V>
impl<V> RefUnwindSafe for BedParserParallelStreamingIterator<V>
impl<V> Send for BedParserParallelStreamingIterator<V>
impl<V> Sync for BedParserParallelStreamingIterator<V>
impl<V> Unpin for BedParserParallelStreamingIterator<V>
impl<V> UnwindSafe for BedParserParallelStreamingIterator<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
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