umya-spreadsheet 3.0.0

umya-spreadsheet is a library written in pure Rust to read and write xlsx file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! store structs.

mod adjustment_coordinate_with_sheet;
#[allow(unused_imports)]
pub use self::adjustment_coordinate_with_sheet::*;

mod adjustment_coordinate;
#[allow(unused_imports)]
pub use self::adjustment_coordinate::*;

mod adjustment_coordinate_with_2sheet;
#[allow(unused_imports)]
pub use self::adjustment_coordinate_with_2sheet::*;

mod adjustment_value;
#[allow(unused_imports)]
pub use self::adjustment_value::*;