pub struct ExponentialHistogram<T> {
pub size: usize,
pub floor: T,
pub initial_step: T,
pub step_multiplier: T,
pub counts: Vec<T>,
pub indexes: Option<Vec<usize>>,
}
Expand description
An exponential histogram property.
Fields§
§size: usize
The number of buckets. If indexes is None this should equal counts.len().
floor: T
The floor of the lowest bucket (not counting the negative-infinity bucket).
initial_step: T
The increment for the second floor.
step_multiplier: T
The multiplier for each successive floor.
counts: Vec<T>
The number of items in each bucket.
indexes: Option<Vec<usize>>
If Some<_>, the indexes of nonzero counts.
Trait Implementations§
source§impl<T: Clone> Clone for ExponentialHistogram<T>
impl<T: Clone> Clone for ExponentialHistogram<T>
source§fn clone(&self) -> ExponentialHistogram<T>
fn clone(&self) -> ExponentialHistogram<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug> Debug for ExponentialHistogram<T>
impl<T: Debug> Debug for ExponentialHistogram<T>
source§impl<'de, T> Deserialize<'de> for ExponentialHistogram<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for ExponentialHistogram<T>where
T: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T: PartialEq> PartialEq for ExponentialHistogram<T>
impl<T: PartialEq> PartialEq for ExponentialHistogram<T>
source§fn eq(&self, other: &ExponentialHistogram<T>) -> bool
fn eq(&self, other: &ExponentialHistogram<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T> Serialize for ExponentialHistogram<T>where
T: Serialize,
impl<T> Serialize for ExponentialHistogram<T>where
T: Serialize,
impl<T> StructuralPartialEq for ExponentialHistogram<T>
Auto Trait Implementations§
impl<T> Freeze for ExponentialHistogram<T>where
T: Freeze,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)