pub struct ComparisonResult {
pub digests: DigestComparison,
pub attributes: AttributeComparison,
pub array_elements: BTreeMap<String, ArrayElementComparison>,
}Expand description
The result of comparing two sequence collections.
Fields§
§digests: DigestComparison§attributes: AttributeComparison§array_elements: BTreeMap<String, ArrayElementComparison>Trait Implementations§
Source§impl Clone for ComparisonResult
impl Clone for ComparisonResult
Source§fn clone(&self) -> ComparisonResult
fn clone(&self) -> ComparisonResult
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 ComparisonResult
impl Debug for ComparisonResult
Source§impl<'de> Deserialize<'de> for ComparisonResult
impl<'de> Deserialize<'de> for ComparisonResult
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
Source§impl PartialEq for ComparisonResult
impl PartialEq for ComparisonResult
Source§impl Serialize for ComparisonResult
impl Serialize for ComparisonResult
impl Eq for ComparisonResult
impl StructuralPartialEq for ComparisonResult
Auto Trait Implementations§
impl Freeze for ComparisonResult
impl RefUnwindSafe for ComparisonResult
impl Send for ComparisonResult
impl Sync for ComparisonResult
impl Unpin for ComparisonResult
impl UnsafeUnpin for ComparisonResult
impl UnwindSafe for ComparisonResult
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