pub struct QuantileMonoid { /* private fields */ }Expand description
Quantile aggregation: collects observed values and computes the
requested quantile at finalize. quantile = 0.5 is the median.
Implementations§
Source§impl QuantileMonoid
impl QuantileMonoid
pub fn new(quantile: f64) -> StorageBackendResult<Self>
Trait Implementations§
Source§impl AggregationMonoid for QuantileMonoid
impl AggregationMonoid for QuantileMonoid
Source§impl Clone for QuantileMonoid
impl Clone for QuantileMonoid
Source§fn clone(&self) -> QuantileMonoid
fn clone(&self) -> QuantileMonoid
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for QuantileMonoid
Auto Trait Implementations§
impl Freeze for QuantileMonoid
impl RefUnwindSafe for QuantileMonoid
impl Send for QuantileMonoid
impl Sync for QuantileMonoid
impl Unpin for QuantileMonoid
impl UnsafeUnpin for QuantileMonoid
impl UnwindSafe for QuantileMonoid
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