pub struct VoiObservation {
pub event_idx: u64,
pub sample_idx: u64,
pub violated: bool,
pub posterior_mean: f64,
pub posterior_variance: f64,
pub alpha: f64,
pub beta: f64,
pub e_value: f64,
pub e_threshold: f64,
}Expand description
Observation result after a sample is taken.
Fields§
§event_idx: u64§sample_idx: u64§violated: bool§posterior_mean: f64§posterior_variance: f64§alpha: f64§beta: f64§e_value: f64§e_threshold: f64Implementations§
Trait Implementations§
Source§impl Clone for VoiObservation
impl Clone for VoiObservation
Source§fn clone(&self) -> VoiObservation
fn clone(&self) -> VoiObservation
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 VoiObservation
impl RefUnwindSafe for VoiObservation
impl Send for VoiObservation
impl Sync for VoiObservation
impl Unpin for VoiObservation
impl UnsafeUnpin for VoiObservation
impl UnwindSafe for VoiObservation
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