Struct opentelemetry::metrics::ValueRecorder[][src]

pub struct ValueRecorder<T>(_);
This is supported on crate feature metrics only.

ValueRecorder is a metric that records per-request non-additive values.

Implementations

impl<T> ValueRecorder<T> where
    T: Into<Number>, 
[src]

pub fn bind<'a>(&self, labels: &'a [KeyValue]) -> BoundValueRecorder<'a, T>[src]

Creates a bound instrument for this ValueRecorder. The labels are associated with values recorded via subsequent calls to record.

pub fn record(&self, value: T, labels: &[KeyValue])[src]

Record a new metric value

pub fn measurement(&self, value: T) -> Measurement[src]

Creates a Measurement object to use with batch recording.

Trait Implementations

impl<T: Clone> Clone for ValueRecorder<T>[src]

impl<T: Debug> Debug for ValueRecorder<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for ValueRecorder<T>

impl<T> Send for ValueRecorder<T> where
    T: Send

impl<T> Sync for ValueRecorder<T> where
    T: Sync

impl<T> Unpin for ValueRecorder<T> where
    T: Unpin

impl<T> !UnwindSafe for ValueRecorder<T>

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.

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