1 2 3 4 5 6 7 8 9 10
#[derive(Debug, Clone, Default)] pub struct TelemetryHandle { _priv: (), } impl TelemetryHandle { pub fn noop() -> Self { Self { _priv: () } } }