[go: up one dir, main page]

arrow2 0.9.1

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Write Arrow

When compiled with feature `io_ipc`, this crate can be used to write Arrow files.

An Arrow file is composed by a header, a footer, and blocks of `RecordBatch`es.

The example below shows how to write `RecordBatch`es:

```rust
{{#include ../../../examples/ipc_file_write.rs}}
```