pub struct AttributeComparison {
pub a_only: Vec<String>,
pub b_only: Vec<String>,
pub a_and_b: Vec<String>,
}Expand description
Which attributes exist in each collection.
Fields§
§a_only: Vec<String>§b_only: Vec<String>§a_and_b: Vec<String>Trait Implementations§
Source§impl Clone for AttributeComparison
impl Clone for AttributeComparison
Source§fn clone(&self) -> AttributeComparison
fn clone(&self) -> AttributeComparison
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 AttributeComparison
impl Debug for AttributeComparison
Source§impl<'de> Deserialize<'de> for AttributeComparison
impl<'de> Deserialize<'de> for AttributeComparison
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 AttributeComparison
impl PartialEq for AttributeComparison
Source§impl Serialize for AttributeComparison
impl Serialize for AttributeComparison
impl Eq for AttributeComparison
impl StructuralPartialEq for AttributeComparison
Auto Trait Implementations§
impl Freeze for AttributeComparison
impl RefUnwindSafe for AttributeComparison
impl Send for AttributeComparison
impl Sync for AttributeComparison
impl Unpin for AttributeComparison
impl UnsafeUnpin for AttributeComparison
impl UnwindSafe for AttributeComparison
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