[go: up one dir, main page]

dhat 0.3.0-pre.2

A library for heap profiling and ad hoc profiling with DHAT.
Documentation
1
2
3
4
5
6
7
fn main() {
    let _profiler = dhat::Profiler::new_ad_hoc();

    dhat::ad_hoc_event(100);
    println!("Hello, world!");
    dhat::ad_hoc_event(200);
}