Struct metrics_util::registry::Generational

source ·
pub struct Generational<T> { /* private fields */ }
Available on crate features registry and recency only.
Expand description

Generation tracking for a metric.

Holds a generic interior value, and provides way to access the value such that each access increments the “generation” of the value. This provides a means to understand if the value has been updated since the last time it was observed.

For example, if a gauge was observed to be X at one point in time, and then observed to be X again at a later point in time, it could have changed in between the two observations. It also may not have changed, and thus Generational provides a way to determine if either of these events occurred.

Implementations§

source§

impl<T> Generational<T>

source

pub fn get_inner(&self) -> &T

Gets a reference to the inner value.

source

pub fn get_generation(&self) -> Generation

Gets the current generation.

source

pub fn with_increment<F, V>(&self, f: F) -> V
where F: Fn(&T) -> V,

Acquires a reference to the inner value, and increments the generation.

Trait Implementations§

source§

impl<T: Clone> Clone for Generational<T>

source§

fn clone(&self) -> Generational<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> CounterFn for Generational<T>
where T: CounterFn,

source§

fn increment(&self, value: u64)

Increments the counter by the given amount.
source§

fn absolute(&self, value: u64)

Sets the counter to at least the given amount. Read more
source§

impl<T> From<Generational<T>> for Counter
where T: CounterFn + Send + Sync + 'static,

source§

fn from(inner: Generational<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Generational<T>> for Gauge
where T: GaugeFn + Send + Sync + 'static,

source§

fn from(inner: Generational<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Generational<T>> for Histogram
where T: HistogramFn + Send + Sync + 'static,

source§

fn from(inner: Generational<T>) -> Self

Converts to this type from the input type.
source§

impl<T> GaugeFn for Generational<T>
where T: GaugeFn,

source§

fn increment(&self, value: f64)

Increments the gauge by the given amount.
source§

fn decrement(&self, value: f64)

Decrements the gauge by the given amount.
source§

fn set(&self, value: f64)

Sets the gauge to the given amount.
source§

impl<T> HistogramFn for Generational<T>
where T: HistogramFn,

source§

fn record(&self, value: f64)

Records a value into the histogram.

Auto Trait Implementations§

§

impl<T> Freeze for Generational<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Generational<T>
where T: RefUnwindSafe,

§

impl<T> Send for Generational<T>
where T: Send,

§

impl<T> Sync for Generational<T>
where T: Sync,

§

impl<T> Unpin for Generational<T>
where T: Unpin,

§

impl<T> UnwindSafe for Generational<T>
where T: UnwindSafe,

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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.