pub struct ArrayElementComparison {
pub a_count: HashMap<String, usize>,
pub b_count: HashMap<String, usize>,
pub a_and_b_count: HashMap<String, usize>,
pub a_and_b_same_order: HashMap<String, Option<bool>>,
}Expand description
Element-level comparison for each shared attribute.
Fields§
§a_count: HashMap<String, usize>§b_count: HashMap<String, usize>§a_and_b_count: HashMap<String, usize>§a_and_b_same_order: HashMap<String, Option<bool>>Trait Implementations§
Source§impl Clone for ArrayElementComparison
impl Clone for ArrayElementComparison
Source§fn clone(&self) -> ArrayElementComparison
fn clone(&self) -> ArrayElementComparison
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 ArrayElementComparison
impl Debug for ArrayElementComparison
Source§impl<'de> Deserialize<'de> for ArrayElementComparison
impl<'de> Deserialize<'de> for ArrayElementComparison
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 ArrayElementComparison
impl RefUnwindSafe for ArrayElementComparison
impl Send for ArrayElementComparison
impl Sync for ArrayElementComparison
impl Unpin for ArrayElementComparison
impl UnsafeUnpin for ArrayElementComparison
impl UnwindSafe for ArrayElementComparison
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