pub struct Writer<W> { /* private fields */ }Implementations§
Source§impl<W: Write + Send + 'static> Writer<W>
impl<W: Write + Send + 'static> Writer<W>
pub fn new( inner: impl IntoIterator<Item = W, IntoIter = impl Iterator<Item = W> + ExactSizeIterator>, schema: &[TableField], ) -> Result<Self>
pub fn find_field(&self, name: &str) -> Option<(usize, &TableField)>
pub fn submit_batch( &mut self, batch: impl IntoIterator<Item = Arc<dyn Array>>, ) -> Result<()>
pub fn finish(self) -> Result<Vec<W>>
Auto Trait Implementations§
impl<W> Freeze for Writer<W>
impl<W> !RefUnwindSafe for Writer<W>
impl<W> Send for Writer<W>
impl<W> Sync for Writer<W>
impl<W> Unpin for Writer<W>
impl<W> !UnwindSafe for Writer<W>
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