pub struct TestRecord {
pub index: usize,
pub p_value: f64,
pub alpha_invested: f64,
pub outcome: TestOutcome,
pub wealth_after: f64,
}Expand description
Record of a single hypothesis test within the Alpha-Investing sequence.
Fields§
§index: usizeHypothesis index (0-based).
p_value: f64The p-value for this hypothesis.
alpha_invested: f64Alpha invested in this test.
outcome: TestOutcomeOutcome of the test.
wealth_after: f64Wealth after this test.
Trait Implementations§
Source§impl Clone for TestRecord
impl Clone for TestRecord
Source§fn clone(&self) -> TestRecord
fn clone(&self) -> TestRecord
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 TestRecord
impl RefUnwindSafe for TestRecord
impl Send for TestRecord
impl Sync for TestRecord
impl Unpin for TestRecord
impl UnsafeUnpin for TestRecord
impl UnwindSafe for TestRecord
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