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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//! # rust-libesedb
//!
//! [](https://github.com/sunsetkookaburra/rust-libesedb)
//! [](https://crates.io/crates/libesedb)
//! [](https://docs.rs/libesedb)
//! [](https://github.com/sunsetkookaburra/rust-libesedb/blob/main/COPYING.LESSER)
//!
//! Safe Rust bindings to [`libyal/libesedb`](https://github.com/libyal/libesedb) (via [`libesedb-sys`](https://docs.rs/libesedb-sys)).
//!
//! ```no_run
//! use libesedb::EseDb;
//!
//! let filename = std::env::args()
//! .nth(1)
//! .unwrap_or("Catalog1.edb".to_string());
//! let db = EseDb::open(filename).unwrap();
//! println!("Db load finished!");
//! let string = db.table_by_name("string").unwrap();
//! for rec in string.iter_records().unwrap() {
//! let rec = rec.unwrap();
//! let vals = rec.iter_values().unwrap().map(|v| v.unwrap_or_default().to_string()).collect::<Vec<_>>();
//! println!("{}", vals.join("\t"));
//! }
//! ```
//!
//! ## Test Data
//!
//! * <https://github.com/janstarke/ntdsextract2/blob/10-include-deleted-entries-in-timeline/tests/data/ntds_plain.dit>
//!
//! ## Future Changes
//!
//! * `v0.3.0`
//! * Remove `close()` methods in favour of `drop!()`
//! * Lazy-load `Value`s (store some sort of record reference, similar to current LongValue and MultiValue internally)
//! * `Value`s come in either `FlatValue`, `LongValue`, `MultiValue` variants, with a defined `ValueType`
//!
//! ## License and Acknowledgement
//!
//! This project is made available under the [LGPL-3.0-or-later](./COPYING.LESSER).
//!
//! The `time` crate (used in FILETIME/OLETIME conversions) is available under the [MIT License](https://github.com/time-rs/time/blob/main/LICENSE-MIT).
//!
//! The core functionality that this library binds to is the hard work of [`Joachim Metz (~joachimmetz)`](https://github.com/joachimmetz).
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;