[][src]Macro kiln::table

macro_rules! table {
    ( $( $n:ident : $t:ident ),* ) => { ... };
}

Shorthand for creating a table spec:

let users = table!{name: str, age: i32};