pub struct FileStreamer<W: AsyncWrite + Unpin + Send> { /* private fields */ }
Expand description

An interface to write a parquet file asynchronously. 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 FileStreamer.

Writes the header of the file

Writes a row group to the file.

Writes the footer of the parquet file. Returns the total size of the file and 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.