pub struct ApproxAggregate {
pub point: f64,
pub ci_low: f64,
pub ci_high: f64,
pub n_population: u64,
pub n_sample_live: usize,
pub n_passing: usize,
}Expand description
A reservoir-sampled approximate aggregate with a normal-theory confidence
interval. ci_low/ci_high bracket point at the requested z-score; the
interval collapses to zero width when the sample covers the whole table.
Fields§
§point: f64§ci_low: f64§ci_high: f64§n_population: u64§n_sample_live: usize§n_passing: usizeTrait Implementations§
Source§impl Clone for ApproxAggregate
impl Clone for ApproxAggregate
Source§fn clone(&self) -> ApproxAggregate
fn clone(&self) -> ApproxAggregate
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 moreAuto Trait Implementations§
impl Freeze for ApproxAggregate
impl RefUnwindSafe for ApproxAggregate
impl Send for ApproxAggregate
impl Sync for ApproxAggregate
impl Unpin for ApproxAggregate
impl UnsafeUnpin for ApproxAggregate
impl UnwindSafe for ApproxAggregate
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more