arrow-message 0.1.6

arrow-message implements a way to define messages according to the Arrow format in both Rust and Python
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(crate) mod helper;
pub(crate) mod traits;

pub mod prelude {
    pub use arrow::{array::Array, datatypes::Field};

    pub use crate::{
        helper::*,
        traits::{
            flattening::{ArrayDataFlattening, ArrayDataLayout, BufferOffset},
            message::ArrowMessage,
        },
    };

    pub use arrow_message_derive::ArrowMessage;
}