frnsc-prefetch 0.13.3

Pure rust windows prefetch parser implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod common;
pub mod decompress;
pub mod metrics;
pub mod prefetch;
pub mod trace;
pub mod volume;

#[cfg(test)]
pub(crate) mod tst;

pub mod prelude {
    pub use crate::common::PrefetchFile;
    pub use crate::prefetch::{
        read_prefetch_file, read_prefetch_file_compressed, read_prefetch_file_no_compressed,
        read_prefetch_form_fs,
    };
}