pub struct EvidenceEntry {
pub frame: usize,
pub value: f64,
pub residual: f64,
pub cusum_upper: f64,
pub cusum_lower: f64,
pub e_value: f64,
pub mean_estimate: f64,
pub sigma_estimate: f64,
}Expand description
A single observation’s evidence record.
Fields§
§frame: usizeFrame index (0-based).
value: f64Raw observation value.
residual: f64Standardised residual: (value - mean) / σ.
cusum_upper: f64CUSUM upper statistic S⁺.
cusum_lower: f64CUSUM lower statistic S⁻.
e_value: f64E-process value (wealth / evidence).
mean_estimate: f64Running mean estimate.
sigma_estimate: f64Running σ estimate.
Implementations§
Trait Implementations§
Source§impl Clone for EvidenceEntry
impl Clone for EvidenceEntry
Source§fn clone(&self) -> EvidenceEntry
fn clone(&self) -> EvidenceEntry
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 EvidenceEntry
impl RefUnwindSafe for EvidenceEntry
impl Send for EvidenceEntry
impl Sync for EvidenceEntry
impl Unpin for EvidenceEntry
impl UnwindSafe for EvidenceEntry
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