pub struct NumericHistogramParams {
pub max_samples: usize,
}Expand description
Parameters for constructing a NumericHistogram.
Fields§
§max_samples: usizeMaximum number of samples to retain. Once this cap is reached, reservoir sampling is used.
Auto Trait Implementations§
impl Freeze for NumericHistogramParams
impl RefUnwindSafe for NumericHistogramParams
impl Send for NumericHistogramParams
impl Sync for NumericHistogramParams
impl Unpin for NumericHistogramParams
impl UnsafeUnpin for NumericHistogramParams
impl UnwindSafe for NumericHistogramParams
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