Expand description
Module containing helper methods for the various file formats See write.rs for write related helper methods
Structs§
- Decoder
Deserializer - A generic, decoder-based deserialization scheme for processing encoded data.
Enums§
- Deserializer
Output - Possible outputs of a
BatchDeserializer.
Traits§
- Batch
Deserializer - Trait defining a scheme for deserializing byte streams into structured data.
Implementors of this trait are responsible for converting raw bytes into
RecordBatchobjects. - Decoder
- A general interface for decoders such as
arrow::json::reader::Decoderandarrow::csv::reader::Decoder. Defines an interface similar toDecoder::decodeandDecoder::flushmethods, but also includes a method to check if the decoder can flush early. Intended to be used in conjunction withDecoderDeserializer.
Functions§
- deserialize_
stream - Deserializes a stream of bytes into a stream of
RecordBatchobjects using the provided deserializer.