Struct opentelemetry_sdk::metrics::data::ExponentialHistogram
source · pub struct ExponentialHistogram<T> {
pub data_points: Vec<ExponentialHistogramDataPoint<T>>,
pub temporality: Temporality,
}
Expand description
The histogram of all measurements of values from an instrument.
Fields§
§data_points: Vec<ExponentialHistogramDataPoint<T>>
The individual aggregated measurements with unique attributes.
temporality: Temporality
Describes if the aggregation is reported as the change from the last report time, or the cumulative changes since a fixed start time.
Trait Implementations§
source§impl<T: Debug + Send + Sync + 'static> Aggregation for ExponentialHistogram<T>
impl<T: Debug + Send + Sync + 'static> Aggregation for ExponentialHistogram<T>
Auto Trait Implementations§
impl<T> Freeze for ExponentialHistogram<T>
impl<T> RefUnwindSafe for ExponentialHistogram<T>where
T: RefUnwindSafe,
impl<T> Send for ExponentialHistogram<T>where
T: Send,
impl<T> Sync for ExponentialHistogram<T>where
T: Sync,
impl<T> Unpin for ExponentialHistogram<T>where
T: Unpin,
impl<T> UnwindSafe for ExponentialHistogram<T>where
T: UnwindSafe,
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