pub type GenerationalAtomicStorage = GenerationalStorage<AtomicStorage>;
Expand description

Generational atomic metric storage.

GenerationalAtomicStorage is based on AtomicStorage, but additionally tracks the “generation” of a metric, which is used to detect updates to metrics where the value otherwise would not be sufficient to be used as an indicator.

Implementations

Creates a GenerationalStorage that uses AtomicStorage as its underlying storage.