pub struct ValueRecordBatchReader { /* private fields */ }Implementations§
Source§impl ValueRecordBatchReader
impl ValueRecordBatchReader
pub fn try_new( file_path: &str, config: Arc<BigWigValueConfig>, ) -> ArrowResult<Self>
pub fn read_batch(&mut self) -> ArrowResult<Option<RecordBatch>>
Sourcepub fn into_stream(self) -> impl Stream<Item = ArrowResult<RecordBatch>>
pub fn into_stream(self) -> impl Stream<Item = ArrowResult<RecordBatch>>
Return a stream of record_batches.
Auto Trait Implementations§
impl Freeze for ValueRecordBatchReader
impl !RefUnwindSafe for ValueRecordBatchReader
impl Send for ValueRecordBatchReader
impl Sync for ValueRecordBatchReader
impl Unpin for ValueRecordBatchReader
impl UnsafeUnpin for ValueRecordBatchReader
impl !UnwindSafe for ValueRecordBatchReader
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