arrow_convert 0.12.1

Convert between nested rust types and Arrow with arrow
Documentation
1
2
3
4
5
6
7
8
9
use arrow_convert::ArrowField;

#[derive(ArrowField)]
struct MetadataNotString {
    #[arrow_field(metadata(role = 1))]
    value: i64,
}

fn main() {}