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.117
#[allow(dead_code)]
#[derive(Debug, BinRead)]
pub struct Data {
    _len: u16,
    _enc_type: u16,
    #[br(count = _len - 2)]
    _enc_info: Vec<u8>,
}