Crate columnar_derive [] [src]

Derive a Columnar representation for a struct.

Examples

Be careful when using this code, it's not being tested!
#[macro_use] extern crate columnar_derive;
extern crate columnar;
#[derive(Columnar)]
struct Data {x: usize, y: u64}