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
use binrw::BinRead;

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

    #[br(assert(_width <= 0x00FF))]
    _width: u16,
}