systemallocstats provides a wrapper around the System
allocator, exposing some of its runtime statistics.
```rust use systemallocstats::SystemWithStats;
static SWS: SystemWithStats = SystemWithStats;
fn main() { (...) println!("current heap use: {}; average allocation size: {}", SWS.usecurr(), SWS.allocavg()); (...) } ```