excelx-derive 0.4.0

Derive macro for the excelx ExcelRow trait.
Documentation
1
2
3
4
5
6
7
8
9
use excelx_derive::ExcelRow;

#[derive(ExcelRow)]
struct MissingOrder {
    #[excel(header = "ID")]
    id: i64,
}

fn main() {}