Crate datafusion::common::arrow::json
Expand description
Modules
- JSON reader
- JSON Writer
Structs
- Reads JSON data with a known schema directly into arrow
RecordBatch
- A JSON writer which serializes
RecordBatch
es to a stream ofu8
encoded JSON objects. See the module level documentation for detailed usage and examples. The specific format of the stream is controlled by theJsonFormat
type parameter.
Traits
- Trait declaring any type that is serializable to JSON. This includes all primitive types (bool, i32, etc.).
Type Aliases
- A JSON writer which serializes
RecordBatch
es to JSON arrays - A JSON writer which serializes
RecordBatch
es to newline delimited JSON objects