pub struct GroupAudit {
pub time: DateTime<Utc>,
pub expected_mean: Option<f64>,
pub expected_sd: Option<f64>,
pub expected_n: Option<i64>,
}Expand description
Portal-precomputed mean/sd for one replicate group, sent alongside the group’s readings so the API can compare server-side.
Fields§
§time: DateTime<Utc>§expected_mean: Option<f64>§expected_sd: Option<f64>§expected_n: Option<i64>Count of non-null replicate cells the portal row carries for this instant; the API re-counts after admission, so a divergence surfaces as an n-mismatch hold.
Trait Implementations§
Source§impl Clone for GroupAudit
impl Clone for GroupAudit
Source§fn clone(&self) -> GroupAudit
fn clone(&self) -> GroupAudit
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 moreSource§impl Debug for GroupAudit
impl Debug for GroupAudit
Auto Trait Implementations§
impl Freeze for GroupAudit
impl RefUnwindSafe for GroupAudit
impl Send for GroupAudit
impl Sync for GroupAudit
impl Unpin for GroupAudit
impl UnsafeUnpin for GroupAudit
impl UnwindSafe for GroupAudit
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