[][src]Enum rtrtr::metrics::OutputFormat

#[non_exhaustive]pub enum OutputFormat {
    Prometheus,
    Plain,
}

The output format for metrics.

This is a non-exhaustive enum so that we can add additional metrics without having to do breaking releases. Output for unknown formats should be empty.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Prometheus

Prometheus’ text-base exposition format.

See https://prometheus.io/docs/instrumenting/exposition_formats/ for details.

Plain

Simple, human-readable plain-text output.

Implementations

impl OutputFormat[src]

pub fn allows_text(self) -> bool[src]

Returns whether the format supports non-numerical metrics.

pub fn supports_type(self, metric: MetricType) -> bool[src]

Returns whether this output format supports this metric type.

Trait Implementations

impl Clone for OutputFormat[src]

impl Copy for OutputFormat[src]

impl Debug for OutputFormat[src]

Auto Trait Implementations

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> Instrument for T[src]

impl<T> Instrument 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,