strawboat 0.1.0

A native storage format based on Apache Arrow.
Documentation
1
2
3
4
5
6
7
8
9
10
//! APIs to write to Arrow's IPC format.
pub(crate) mod common;
mod serialize;
pub(crate) mod writer;

pub use common::WriteOptions;
pub use serialize::write;
pub use writer::NativeWriter;

pub(crate) mod common_sync;