quiver 0.2.0

A schema specification and validator for Arrow record batches
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Unknown `#[quiver(…)]` arguments are an error.

use quiver::arrow::array::StringArray;

#[derive(quiver::Quiver)]
struct Thing {
    #[quiver(nullable)]
    name: StringArray,
}

fn main() {}