excelx-derive 0.4.1

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

#[derive(ExcelRow)]
struct MissingHeader {
    #[excel(order = 1)]
    id: i64,
}

fn main() {}