pub struct UpdateReport {
pub workflow_files: usize,
pub references_scanned: usize,
pub already_pinned: usize,
pub entries: Vec<VersionEntry>,
pub changes: Vec<UpdateChange>,
pub file_updates: Vec<FileUpdate>,
}Fields§
§workflow_files: usize§references_scanned: usize§already_pinned: usize§entries: Vec<VersionEntry>§changes: Vec<UpdateChange>§file_updates: Vec<FileUpdate>Implementations§
Source§impl UpdateReport
impl UpdateReport
pub fn changed_files(&self) -> usize
Trait Implementations§
Source§impl Clone for UpdateReport
impl Clone for UpdateReport
Source§fn clone(&self) -> UpdateReport
fn clone(&self) -> UpdateReport
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 UpdateReport
impl Debug for UpdateReport
impl Eq for UpdateReport
Source§impl PartialEq for UpdateReport
impl PartialEq for UpdateReport
impl StructuralPartialEq for UpdateReport
Auto Trait Implementations§
impl Freeze for UpdateReport
impl RefUnwindSafe for UpdateReport
impl Send for UpdateReport
impl Sync for UpdateReport
impl Unpin for UpdateReport
impl UnsafeUnpin for UpdateReport
impl UnwindSafe for UpdateReport
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.