Crate column_derive [] [src]

Derive a Column representation for a struct.

Examples

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