pub struct CargoUpdateReport {
pub manifest_files: usize,
pub dependencies_scanned: usize,
pub unmanaged_dependencies: usize,
pub entries: Vec<CargoDependencyEntry>,
pub changes: Vec<UpdateChange>,
pub file_updates: Vec<FileUpdate>,
}Fields§
§manifest_files: usize§dependencies_scanned: usize§unmanaged_dependencies: usize§entries: Vec<CargoDependencyEntry>§changes: Vec<UpdateChange>§file_updates: Vec<FileUpdate>Trait Implementations§
Source§impl Clone for CargoUpdateReport
impl Clone for CargoUpdateReport
Source§fn clone(&self) -> CargoUpdateReport
fn clone(&self) -> CargoUpdateReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CargoUpdateReport
impl Debug for CargoUpdateReport
Source§impl Default for CargoUpdateReport
impl Default for CargoUpdateReport
Source§fn default() -> CargoUpdateReport
fn default() -> CargoUpdateReport
Returns the “default value” for a type. Read more
impl Eq for CargoUpdateReport
Source§impl PartialEq for CargoUpdateReport
impl PartialEq for CargoUpdateReport
impl StructuralPartialEq for CargoUpdateReport
Auto Trait Implementations§
impl Freeze for CargoUpdateReport
impl RefUnwindSafe for CargoUpdateReport
impl Send for CargoUpdateReport
impl Sync for CargoUpdateReport
impl Unpin for CargoUpdateReport
impl UnsafeUnpin for CargoUpdateReport
impl UnwindSafe for CargoUpdateReport
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.