Struct opentelemetry::metrics::Counter
source · #[non_exhaustive]pub struct Counter<T>(/* private fields */);
Expand description
An instrument that records increasing values.
Counter
can be cloned to create multiple handles to the same instrument. If a Counter
needs to be shared,
users are recommended to clone the Counter
instead of creating duplicate Counter
s for the same metric. Creating
duplicate Counter
s for the same metric could lower SDK performance.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Counter<T>
impl<T> !RefUnwindSafe for Counter<T>
impl<T> Send for Counter<T>
impl<T> Sync for Counter<T>
impl<T> Unpin for Counter<T>
impl<T> !UnwindSafe for Counter<T>
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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)