logo
pub trait AnyMeterCore: MeterCore {
    fn as_any(&self) -> &(dyn Any + 'static);
}
Available on crate feature metrics only.
Expand description

An extension trait that allows meters to be downcast

Required Methods

Returns the current type as Any

Implementors