pub struct ProductHistogram { /* private fields */ }Expand description
Typed handle for a registered product histogram.
Implementations§
Source§impl ProductHistogram
impl ProductHistogram
Sourcepub fn from_handle(handle: ProductMetricHandle) -> ProductMetricResult<Self>
pub fn from_handle(handle: ProductMetricHandle) -> ProductMetricResult<Self>
Creates a typed histogram from an opaque product metric handle.
Sourcepub const fn handle(&self) -> ProductMetricHandle
pub const fn handle(&self) -> ProductMetricHandle
Returns the underlying opaque handle.
Sourcepub fn observe(&self, label_values: &[&str], value: f64)
pub fn observe(&self, label_values: &[&str], value: f64)
Observes a value in this histogram and logs recording failures.
Sourcepub fn try_observe(
&self,
label_values: &[&str],
value: f64,
) -> ProductMetricResult<()>
pub fn try_observe( &self, label_values: &[&str], value: f64, ) -> ProductMetricResult<()>
Observes a value in this histogram and returns recording failures.
Trait Implementations§
Source§impl Clone for ProductHistogram
impl Clone for ProductHistogram
Source§fn clone(&self) -> ProductHistogram
fn clone(&self) -> ProductHistogram
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProductHistogram
impl Debug for ProductHistogram
Source§impl PartialEq for ProductHistogram
impl PartialEq for ProductHistogram
Source§fn eq(&self, other: &ProductHistogram) -> bool
fn eq(&self, other: &ProductHistogram) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ProductHistogram
impl Eq for ProductHistogram
impl StructuralPartialEq for ProductHistogram
Auto Trait Implementations§
impl Freeze for ProductHistogram
impl RefUnwindSafe for ProductHistogram
impl Send for ProductHistogram
impl Sync for ProductHistogram
impl Unpin for ProductHistogram
impl UnsafeUnpin for ProductHistogram
impl UnwindSafe for ProductHistogram
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.