edirstat 1.0.2

A fast, cross-platform disk usage analyzer with work-stealing multithreading, zero-copy snapshots, and an interactive treemap GUI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod dir_composition;
pub mod extension_boxplot;
pub mod scatter_plot;
pub mod size_distribution;
pub mod temporal_timeline;
pub mod treemap;

pub trait StatsChart {
    type Output;

    /// Iteratively computes or updates the chart's visual/plot data
    /// using the latest thread-safe snapshot frame.
    fn compute(&mut self, snapshot: &crate::arena::FileArenaSnapshot) -> Self::Output;
}