arrow2 0.7.1

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! APIs to write to Arrow's IPC format.
pub mod common;
mod schema;
mod serialize;
mod stream;
mod writer;

pub use arrow_format::ipc::Schema::MetadataVersion;
pub use common::IpcWriteOptions;
pub use schema::schema_to_bytes;
pub use serialize::{write, write_dictionary};
pub use stream::StreamWriter;
pub use writer::FileWriter;