pub struct EvidenceLog {
pub observation_idx: usize,
pub residual: f64,
pub e_increment: f64,
pub e_cumulative: f64,
pub variance: f64,
pub decision: bool,
}Expand description
Log entry for evidence tracking.
Fields§
§observation_idx: usizeObservation index.
residual: f64The residual value observed.
e_increment: f64The incremental e-value for this observation.
e_cumulative: f64Cumulative e-value after this observation.
variance: f64Variance estimate at this point.
decision: boolDecision at this point.
Implementations§
Trait Implementations§
Source§impl Clone for EvidenceLog
impl Clone for EvidenceLog
Source§fn clone(&self) -> EvidenceLog
fn clone(&self) -> EvidenceLog
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for EvidenceLog
impl RefUnwindSafe for EvidenceLog
impl Send for EvidenceLog
impl Sync for EvidenceLog
impl Unpin for EvidenceLog
impl UnwindSafe for EvidenceLog
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