[][src]Enum metrix::Observation

pub enum Observation<L> {
    Observed {
        label: L,
        count: u64,
        timestamp: Instant,
    },
    ObservedOne {
        label: L,
        timestamp: Instant,
    },
    ObservedOneValue {
        label: L,
        value: ObservedValue,
        timestamp: Instant,
    },
}

An observation that has been made.

Be aware that not all instruments handle all observations or values. E.g. a Meter does not take the value of an Observation::ObservedOneValue into account but simply counts the observation as one occurrence.

Variants

Observed

Observed many occurrences with no value at the given timestamp

Fields of Observed

label: Lcount: u64timestamp: Instant
ObservedOne

Observed one occurrence without a value at the given timestamp

Fields of ObservedOne

label: Ltimestamp: Instant
ObservedOneValue

Observed one occurrence with a value at a given timestamp.

Fields of ObservedOneValue

label: Lvalue: ObservedValuetimestamp: Instant

Methods

impl<L> Observation<L>[src]

pub fn observed(label: L, count: u64, timestamp: Instant) -> Self[src]

pub fn observed_now(label: L, count: u64) -> Self[src]

pub fn observed_one(label: L, timestamp: Instant) -> Self[src]

pub fn observed_one_now(label: L) -> Self[src]

pub fn observed_one_value<T: Into<ObservedValue>>(
    label: L,
    value: T,
    timestamp: Instant
) -> Self
[src]

pub fn observed_one_value_now<T: Into<ObservedValue>>(
    label: L,
    value: T
) -> Self
[src]

impl<L> Observation<L>[src]

pub fn label(&self) -> &L[src]

Extracts the label L from an observation.

impl<L> Observation<L>[src]

pub fn timestamp(&self) -> Instant[src]

Trait Implementations

impl<L: Debug> Debug for Observation<L>[src]

impl<'a, T> From<&'a Observation<T>> for BorrowedLabelAndUpdate<'a, T>[src]

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

impl<L> ObservationLike for Observation<L>[src]

Auto Trait Implementations

impl<L> RefUnwindSafe for Observation<L> where
    L: RefUnwindSafe

impl<L> Send for Observation<L> where
    L: Send

impl<L> Sync for Observation<L> where
    L: Sync

impl<L> Unpin for Observation<L> where
    L: Unpin

impl<L> UnwindSafe for Observation<L> where
    L: UnwindSafe

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, 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>,