pub fn end_event()
Expand description
End an instrumentation event.
Must be matched with a call to begin_event
within the same function
Examples found in repository?
examples/basic.rs (line 24)
19fn big_fn() {
20 // work 1
21
22 superluminal_perf::begin_event("example-work1");
23 let v = heavy_calc1();
24 superluminal_perf::end_event();
25 println!("work1 done: {}", v);
26
27 // work 2
28
29 superluminal_perf::begin_event("example-work2");
30 let v = heavy_calc2();
31 superluminal_perf::end_event();
32 println!("work2 done: {}", v);
33}