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