pub struct AsyncInstrumentBuilder<'a, I, M>where
    I: AsyncInstrument<M>,{ /* private fields */ }
Expand description

Configuration for building an async instrument.

Implementations§

source§

impl<'a, I, M> AsyncInstrumentBuilder<'a, I, M>where I: TryFrom<Self, Error = MetricsError> + AsyncInstrument<M>,

source

pub fn with_description<S: Into<Cow<'static, str>>>( self, description: S ) -> Self

Set the description for this instrument

source

pub fn with_unit(self, unit: Unit) -> Self

Set the unit for this instrument.

Unit is case sensitive(kb is not the same as kB).

Unit must be:

  • ASCII string
  • No longer than 63 characters
source

pub fn with_callback<F>(self, callback: F) -> Selfwhere F: Fn(&dyn AsyncInstrument<M>) + Send + Sync + 'static,

Set the callback to be called for this instrument.

source

pub fn try_init(self) -> Result<I>

Validate the instrument configuration and creates a new instrument.

source

pub fn init(self) -> I

Creates a new instrument.

This method reports configuration errors but still returns the instrument.

Panics

Panics if the instrument cannot be created. Use try_init if you want to handle errors.

Trait Implementations§

source§

impl<I, M> Debug for AsyncInstrumentBuilder<'_, I, M>where I: AsyncInstrument<M>,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl TryFrom<AsyncInstrumentBuilder<'_, ObservableCounter<f64>, f64>> for ObservableCounter<f64>

§

type Error = MetricsError

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

fn try_from( builder: AsyncInstrumentBuilder<'_, ObservableCounter<f64>, f64> ) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<AsyncInstrumentBuilder<'_, ObservableCounter<u64>, u64>> for ObservableCounter<u64>

§

type Error = MetricsError

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

fn try_from( builder: AsyncInstrumentBuilder<'_, ObservableCounter<u64>, u64> ) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<AsyncInstrumentBuilder<'_, ObservableGauge<f64>, f64>> for ObservableGauge<f64>

§

type Error = MetricsError

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

fn try_from( builder: AsyncInstrumentBuilder<'_, ObservableGauge<f64>, f64> ) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<AsyncInstrumentBuilder<'_, ObservableGauge<i64>, i64>> for ObservableGauge<i64>

§

type Error = MetricsError

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

fn try_from( builder: AsyncInstrumentBuilder<'_, ObservableGauge<i64>, i64> ) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<AsyncInstrumentBuilder<'_, ObservableGauge<u64>, u64>> for ObservableGauge<u64>

§

type Error = MetricsError

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

fn try_from( builder: AsyncInstrumentBuilder<'_, ObservableGauge<u64>, u64> ) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<AsyncInstrumentBuilder<'_, ObservableUpDownCounter<f64>, f64>> for ObservableUpDownCounter<f64>

§

type Error = MetricsError

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

fn try_from( builder: AsyncInstrumentBuilder<'_, ObservableUpDownCounter<f64>, f64> ) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<AsyncInstrumentBuilder<'_, ObservableUpDownCounter<i64>, i64>> for ObservableUpDownCounter<i64>

§

type Error = MetricsError

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

fn try_from( builder: AsyncInstrumentBuilder<'_, ObservableUpDownCounter<i64>, i64> ) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<'a, I, M> !RefUnwindSafe for AsyncInstrumentBuilder<'a, I, M>

§

impl<'a, I, M> Send for AsyncInstrumentBuilder<'a, I, M>

§

impl<'a, I, M> Sync for AsyncInstrumentBuilder<'a, I, M>

§

impl<'a, I, M> Unpin for AsyncInstrumentBuilder<'a, I, M>where I: Unpin,

§

impl<'a, I, M> !UnwindSafe for AsyncInstrumentBuilder<'a, I, M>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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> FutureExt for T

source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.