pub struct FileWriter<W: Write> { /* private fields */ }
Expand description
Arrow file writer
Implementations
sourceimpl<W: Write> FileWriter<W>
impl<W: Write> FileWriter<W>
sourcepub fn try_new(
writer: W,
schema: &Schema,
ipc_fields: Option<Vec<IpcField>>,
options: WriteOptions
) -> Result<Self>
pub fn try_new(
writer: W,
schema: &Schema,
ipc_fields: Option<Vec<IpcField>>,
options: WriteOptions
) -> Result<Self>
Try create a new writer, with the schema written as part of the header
sourcepub fn into_inner(self) -> W
pub fn into_inner(self) -> W
Consumes itself into the inner writer
Auto Trait Implementations
impl<W> !RefUnwindSafe for FileWriter<W>
impl<W> Send for FileWriter<W> where
W: Send,
impl<W> Sync for FileWriter<W> where
W: Sync,
impl<W> Unpin for FileWriter<W> where
W: Unpin,
impl<W> !UnwindSafe for FileWriter<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