pub struct FileWriter<W: Write> { /* private fields */ }
Available on crate feature io_ipc only.
Expand description

Arrow file writer

Implementations

Creates a new FileWriter from an existing file, seeking to the last message and appending new messages afterwards. Users call finish to write the footer (with both) the existing and appended messages on it.

Error

This function errors iff:

  • the file’s endianess is not the native endianess (not yet supported)
  • the file is not a valid Arrow IPC file

Creates a new FileWriter and writes the header to writer

Creates a new FileWriter.

Consumes itself into the inner writer

Writes the header and first (schema) message to the file.

Errors

Errors if the file has been started or has finished.

Writes Chunk to the file

Write footer and closing tag, then mark the writer as done

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.