pub trait SyncInstrument<T>: Send + Sync { // Required method fn measure(&self, measurement: T, attributes: &[KeyValue]); }
An SDK implemented instrument that records measurements synchronously.
Records a measurement synchronously.