pub struct ExpectedCorrelationConfig {
pub field1: String,
pub field2: String,
pub expected_r: f64,
pub tolerance: f64,
}Expand description
Expected correlation for validation.
Fields§
§field1: StringFirst field name.
field2: StringSecond field name.
expected_r: f64Expected correlation coefficient.
tolerance: f64Acceptable tolerance.
Trait Implementations§
Source§impl Clone for ExpectedCorrelationConfig
impl Clone for ExpectedCorrelationConfig
Source§fn clone(&self) -> ExpectedCorrelationConfig
fn clone(&self) -> ExpectedCorrelationConfig
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 ExpectedCorrelationConfig
impl Debug for ExpectedCorrelationConfig
Source§impl<'de> Deserialize<'de> for ExpectedCorrelationConfig
impl<'de> Deserialize<'de> for ExpectedCorrelationConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExpectedCorrelationConfig
impl RefUnwindSafe for ExpectedCorrelationConfig
impl Send for ExpectedCorrelationConfig
impl Sync for ExpectedCorrelationConfig
impl Unpin for ExpectedCorrelationConfig
impl UnwindSafe for ExpectedCorrelationConfig
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