arrow2_convert 0.1.0

Convert between nested rust types and Arrow with arrow2
Documentation
1
2
3
4
5
6
7
8
9
10
// The proc macro is implemented in derive_internal, and re-exported by this
// crate. This is because a single crate can not define both a proc macro and a
// macro_rules macro.
pub mod deserialize;
pub mod field;
pub mod serialize;

#[cfg(feature = "arrow2_convert_derive")]
#[doc(hidden)]
pub use arrow2_convert_derive::ArrowField;