pub struct FileWriter<W: Write> { /* private fields */ }
Expand description

An interface to write a parquet file. Use start to write the header, write to write a row group, and end to write the footer.

Implementations

The options assigned to the file

The SchemaDescriptor assigned to this file

Returns a new FileWriter.

Writes the header of the file

Writes a row group to the file.

This call is IO-bounded

Writes the footer of the parquet file. Returns the total size of the file.

Returns the underlying writer.

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.