pub struct FieldComparison {
pub field_name: String,
pub original_value: Value,
pub replayed_value: Value,
pub is_match: bool,
pub similarity: f64,
}Fields§
§field_name: String§original_value: Value§replayed_value: Value§is_match: bool§similarity: f64Trait Implementations§
Source§impl Clone for FieldComparison
impl Clone for FieldComparison
Source§fn clone(&self) -> FieldComparison
fn clone(&self) -> FieldComparison
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 FieldComparison
impl Debug for FieldComparison
Source§impl<'de> Deserialize<'de> for FieldComparison
impl<'de> Deserialize<'de> for FieldComparison
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 FieldComparison
impl RefUnwindSafe for FieldComparison
impl Send for FieldComparison
impl Sync for FieldComparison
impl Unpin for FieldComparison
impl UnsafeUnpin for FieldComparison
impl UnwindSafe for FieldComparison
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