pub struct Gauge<T> {
pub data_points: Vec<DataPoint<T>>,
}
Expand description
A measurement of the current value of an instrument.
Fields§
§data_points: Vec<DataPoint<T>>
Represents individual aggregated measurements with unique attributes.
Trait Implementations§
Auto Trait Implementations§
impl<T> RefUnwindSafe for Gauge<T>where T: RefUnwindSafe,
impl<T> Send for Gauge<T>where T: Send,
impl<T> Sync for Gauge<T>where T: Sync,
impl<T> Unpin for Gauge<T>where T: Unpin,
impl<T> UnwindSafe for Gauge<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