pub struct ArrayElementComparison {
pub total_a: usize,
pub total_b: usize,
pub a_and_b: usize,
pub a_only: usize,
pub b_only: usize,
pub order: OrderResult,
}Expand description
Element-level comparison for a single attribute.
Fields§
§total_a: usize§total_b: usize§a_and_b: usize§a_only: usize§b_only: usize§order: OrderResultTrait 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
Source§impl PartialEq for ArrayElementComparison
impl PartialEq for ArrayElementComparison
Source§impl Serialize for ArrayElementComparison
impl Serialize for ArrayElementComparison
impl Eq for ArrayElementComparison
impl StructuralPartialEq for ArrayElementComparison
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