Skip to main content

Histogram

Trait Histogram 

Source
pub trait Histogram:
    Send
    + Sync
    + 'static {
    // Required method
    fn observe(&self, v: f64);
}
Expand description

Single histogram handle (one specific label combination).

Required Methods§

Source

fn observe(&self, v: f64)

Implementors§