Enum TimingBucket

Source
pub enum TimingBucket {
    P25,
    P50,
    P75,
    P90,
    P95,
    P99,
    P99P9,
    Max,
    Count,
}
Expand description

Labels corresponding to the fields in Sample

Variants§

§

P25

25th percentile observation

§

P50

50th percentile observation

§

P75

75th percentile observation

§

P90

90th percentile observation

§

P95

95th percentile observation

§

P99

99th percentile observation

§

P99P9

99.9th percentile observation

§

Max

Maximum observation

§

Count

Number of observations

Implementations§

Source§

impl TimingBucket

Source

pub fn as_str(&self) -> &'static str

The name of this enum variant, as a string slice.

Source

pub fn all_variants() -> Vec<Self>

A vector containing one instance of each of the enum’s variants.

Trait Implementations§

Source§

impl Labels for TimingBucket

Source§

fn label_names() -> Vec<&'static str>

The names of the labels that will be defined for the corresponding metric.
Source§

fn possible_label_values() -> Vec<LabelValues<'static>>

Labels values to seed the metric with initially. Read more
Source§

fn label_values(&self) -> LabelValues<'_>

The actual label values to provide when emitting an event to Prometheus. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.