fastmetrics 0.7.1

OpenMetrics / Prometheus client library in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module contains the low-level components of metric types, which serve as the
//! foundation for higher-level metric abstractions.
//!
//! These components are typically not used directly but rather through the higher-level
//! metric types provided by the crate.

mod atomic;
pub mod bucket;
mod label_set;
pub mod metadata;
mod number;
pub mod quantile;
mod types;

pub use self::{atomic::Atomic, label_set::*, metadata::*, number::Number, types::*};