Crate column_derive

Crate column_derive 

Source
Expand description

Derive a Column representation for a struct.

§Examples

#[macro_use] extern crate column_derive;
extern crate column;
#[derive(Column)]
struct Data {x: usize, y: u64}