[][src]Macro kiln::row

macro_rules! row {
    ( $( $key:ident : $val:expr ),* ) => { ... };
}

Creates a new Row object from an abstract HashMap-like representation

users.insert(row!{
    name: "richard",
    age: 83
});