pub trait ProvideMeter: Send + Sync + Debug {
// Required methods
fn get_meter(
&self,
scope: &'static str,
attributes: Option<&Attributes>,
) -> Arc<dyn Meter>;
fn as_any(&self) -> &(dyn Any + 'static);
}
Available on non-PowerPC only.
Expand description
Provides named instances of Meter.