1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! OpenQVD: clean-room reader for Qlik QVD files.
//!
//! Implements the specification in `SPEC.md` (AGPL-3.0-or-later). Derived
//! entirely from binary analysis of a public corpus; no existing QVD
//! parsers have been consulted.
//!
//! # Quick start
//!
//! ```no_run
//! use openqvd::Qvd;
//!
//! let qvd = Qvd::from_path("data.qvd").unwrap();
//! println!("table {:?} with {} rows", qvd.table_name(), qvd.num_rows());
//! for row in qvd.rows() {
//! for (field, value) in qvd.fields().iter().zip(row) {
//! println!(" {} = {:?}", field.name, value);
//! }
//! }
//! ```
//!
//! The reader is strict: any deviation from the spec produces a
//! [`QvdError`] rather than silent misinterpretation.
pub use QvdError;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;