pub struct UpdateReport {
pub client: String,
pub status: UpdateStatus,
pub updated_paths: Vec<PathBuf>,
pub notes: Vec<String>,
}Expand description
Outcome of an update call.
Fields§
§client: String§status: UpdateStatus§updated_paths: Vec<PathBuf>Files the installer wrote (or, in dry_run, would have written).
notes: Vec<String>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
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