pub enum EntryDifference {
Missing {
value: Value,
},
Extra {
value: Value,
},
Value {
value_diff: Difference,
},
}Variants§
Missing
An entry from target that source is missing
Extra
An entry that source has, and target doesn’t
Value
The entry exists in both JSONs, but the values are different
Fields
§
value_diff: DifferenceTrait Implementations§
Source§impl Debug for EntryDifference
impl Debug for EntryDifference
Auto Trait Implementations§
impl Freeze for EntryDifference
impl RefUnwindSafe for EntryDifference
impl Send for EntryDifference
impl Sync for EntryDifference
impl Unpin for EntryDifference
impl UnwindSafe for EntryDifference
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