xlrd 0.1.1

A historical Excel BIFF8 xls format file reader in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use binrw::BinRead;

// 2.4.77
#[derive(Debug, BinRead)]
pub struct Data {
    #[br(assert(_len == 2))]
    _len: u16,

    #[br(map = |x: u16| x == 0x0001)]
    pub is1904: bool,
}