pub struct MetadataMismatch {
pub first: MetadataKeyValue,
pub second: MetadataKeyValue,
}
Expand description
A mismatch between metadata of two types of alpm-package metadata files.
Tracks two MetadataKeyValue
instances that describe a mismatch in a key-value pair.
Fields§
§first: MetadataKeyValue
§second: MetadataKeyValue
Another MetadataKeyValue
that differs from the first
.
Trait Implementations§
Source§impl Clone for MetadataMismatch
impl Clone for MetadataMismatch
Source§fn clone(&self) -> MetadataMismatch
fn clone(&self) -> MetadataMismatch
Returns a copy 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 MetadataMismatch
impl Debug for MetadataMismatch
Auto Trait Implementations§
impl Freeze for MetadataMismatch
impl RefUnwindSafe for MetadataMismatch
impl Send for MetadataMismatch
impl Sync for MetadataMismatch
impl Unpin for MetadataMismatch
impl UnwindSafe for MetadataMismatch
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