canic-core 0.26.1

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::perf;

///
/// PerfOps
///

pub struct PerfOps;

impl PerfOps {
    // Record a timer perf sample into the shared perf table.
    pub(crate) fn record(label: &str, delta: u64) {
        perf::record_timer(label, delta);
    }
}