pub struct Reconcile {
pub missing: Vec<String>,
pub extra: Vec<String>,
}Expand description
The difference between what a manifest declares and what the lock pins.
Fields§
§missing: Vec<String>Declared in the manifest but absent from the lock (need re-lock).
extra: Vec<String>Present in the lock but no longer declared (prune candidates).
Implementations§
Trait Implementations§
impl Eq for Reconcile
impl StructuralPartialEq for Reconcile
Auto Trait Implementations§
impl Freeze for Reconcile
impl RefUnwindSafe for Reconcile
impl Send for Reconcile
impl Sync for Reconcile
impl Unpin for Reconcile
impl UnsafeUnpin for Reconcile
impl UnwindSafe for Reconcile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.