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
//! Compile-fail tests for `#[derive(Quiver)]`.
//!
//! To update the expected output, run with the environment variable `TRYBUILD=overwrite`.

#![cfg(feature = "derive")]

#[test]
fn compile_fail() {
    let tests = trybuild::TestCases::new();
    tests.compile_fail("tests/compile_fail/*.rs");
}