c793f44cbbaa12f7c329599d7dc6f8dc9d735d3f
[pspp] / rust / src / lib.rs
1 pub mod endian;
2 pub mod raw;
3 pub mod cooked;
4 pub mod sack;
5 pub mod encoding;
6 pub mod format;
7 pub mod identifier;
8
9 #[derive(Copy, Clone, Debug)]
10 pub enum Compression {
11     Simple,
12     ZLib,
13 }
14
15 #[derive(Clone, Debug)]
16 pub enum CategoryLabels {
17     VarLabels,
18     CountedValues,
19 }