typeshift 0.5.1

Zod-like parse, validation, and JSON Schema flow for Rust types
Documentation
1
2
3
4
5
6
7
8
9
use typeshift::typeshift;

#[typeshift]
union Bad {
    a: u32,
    b: f32,
}

fn main() {}