Struct prometheus::proto::Histogram[][src]

pub struct Histogram { /* fields omitted */ }

Implementations

impl Histogram[src]

pub fn new() -> Histogram[src]

👎 Deprecated since 0.5.1:

Use default()

pub fn set_sample_count(&mut self, v: u64)[src]

pub fn get_sample_count(&self) -> u64[src]

pub fn set_sample_sum(&mut self, v: f64)[src]

pub fn get_sample_sum(&self) -> f64[src]

pub fn set_bucket(&mut self, v: Vec<Bucket>)[src]

pub fn get_bucket(&self) -> &[Bucket][src]

Trait Implementations

impl Clone for Histogram[src]

impl Debug for Histogram[src]

impl Default for Histogram[src]

impl PartialEq<Histogram> for Histogram[src]

impl StructuralPartialEq for Histogram[src]

Auto Trait Implementations

impl RefUnwindSafe for Histogram

impl Send for Histogram

impl Sync for Histogram

impl Unpin for Histogram

impl UnwindSafe for Histogram

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.