pub struct WhiteTestOutput {
pub test_name: String,
pub r_result: Option<WhiteSingleResult>,
pub python_result: Option<WhiteSingleResult>,
pub interpretation: String,
pub guidance: String,
}Expand description
Result of White test supporting both R and Python variants
Fields§
§test_name: String§r_result: Option<WhiteSingleResult>§python_result: Option<WhiteSingleResult>§interpretation: String§guidance: StringTrait Implementations§
Source§impl Clone for WhiteTestOutput
impl Clone for WhiteTestOutput
Source§fn clone(&self) -> WhiteTestOutput
fn clone(&self) -> WhiteTestOutput
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 moreSource§impl Debug for WhiteTestOutput
impl Debug for WhiteTestOutput
Auto Trait Implementations§
impl Freeze for WhiteTestOutput
impl RefUnwindSafe for WhiteTestOutput
impl Send for WhiteTestOutput
impl Sync for WhiteTestOutput
impl Unpin for WhiteTestOutput
impl UnwindSafe for WhiteTestOutput
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