usecrate::{Metric, MetricEntry};used_in_docs!(MetricEntry);/// A metric that always reports itself as disabled.
////// This is used as a default metric pointer within [`MetricEntry`] for cases
/// where there is no valid metric.
pub(crate)structNullMetric;implMetric forNullMetric{fnas_any(&self)->Option<&dyn std::any::Any>{None}fnvalue(&self)->Option<crate::Value>{None}}