pub struct Writer<W> { /* private fields */ }Implementations
sourceimpl<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> !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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more