#[non_exhaustive]pub struct InstallReport {
pub created: Vec<PathBuf>,
pub patched: Vec<PathBuf>,
pub backed_up: Vec<PathBuf>,
pub already_installed: bool,
}Expand description
Outcome of a successful Integration::install.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.created: Vec<PathBuf>Files this call created (did not previously exist).
patched: Vec<PathBuf>Existing files this call modified.
backed_up: Vec<PathBuf>Sibling .bak files written. Each entry is the backup path; the
original lives at the same path without .bak.
already_installed: boolTrue if every target was already in the desired state; nothing changed.
Trait Implementations§
Source§impl Clone for InstallReport
impl Clone for InstallReport
Source§fn clone(&self) -> InstallReport
fn clone(&self) -> InstallReport
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 InstallReport
impl Debug for InstallReport
Source§impl Default for InstallReport
impl Default for InstallReport
Source§fn default() -> InstallReport
fn default() -> InstallReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InstallReport
impl RefUnwindSafe for InstallReport
impl Send for InstallReport
impl Sync for InstallReport
impl Unpin for InstallReport
impl UnsafeUnpin for InstallReport
impl UnwindSafe for InstallReport
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