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