Expand description
JSON format decoder, encoder, and JSONB binary format.
Implements F-SCHEMA-004:
JsonDecoder— Ring 1 decoder: JSON bytes → ArrowRecordBatchJsonEncoder— Ring 1 encoder: ArrowRecordBatch→ JSON bytesJsonbEncoder/JsonbAccessor— JSONB binary format for O(log n) field access on Ring 0
Re-exports§
pub use decoder::JsonDecoder;pub use decoder::JsonDecoderConfig;pub use decoder::TypeMismatchStrategy;pub use decoder::UnknownFieldStrategy;pub use encoder::JsonEncoder;pub use jsonb::JsonbAccessor;pub use jsonb::JsonbEncoder;
Modules§
- decoder
- JSON format decoder implementing
FormatDecoder. - encoder
- JSON format encoder implementing
FormatEncoder. - jsonb
- JSONB binary format for O(log n) field access on Ring 0.