Derive Macro bookdata::prelude::TableRow

#[derive(TableRow)]
Expand description

Macro to derive the TableRow trait for a row, allowing a vector of rows to be converted to a data frame.

Use this as:

#[derive(TableRow)]
struct Record {
    <fields>
}

Note: this macro does not support generics, including lifetimes.