pub struct NativeHistogram { /* private fields */ }Expand description
A native histogram implementation using exponential buckets.
This implementation follows the Prometheus native histogram specification, using sparse representation with exponential buckets and schema-based indexing.
Trait Implementations§
Source§impl Clone for NativeHistogram
impl Clone for NativeHistogram
Auto Trait Implementations§
impl !Freeze for NativeHistogram
impl RefUnwindSafe for NativeHistogram
impl Send for NativeHistogram
impl Sync for NativeHistogram
impl Unpin for NativeHistogram
impl UnwindSafe for NativeHistogram
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