pub struct UpdateReport {
pub pulled: bool,
pub link: LinkReport,
pub version_warning: Option<String>,
pub hooks_skipped: usize,
}Expand description
Summary returned by a successful update.
Fields§
§pulled: boolWhether git fetch advanced the repo (i.e. there were new commits).
link: LinkReportReport from the link step.
version_warning: Option<String>Version warning if our binary is older than [meta] krypt_min.
hooks_skipped: usizeNumber of post-update hooks skipped (not yet implemented).
Trait Implementations§
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