pub struct Report {
pub written: Vec<Written>,
pub skipped_conflicts: usize,
}Expand description
What execute actually did.
Fields§
§written: Vec<Written>Files actually written, with hashes. Empty in dry-run mode aside from the path/kind triples.
skipped_conflicts: usizeConflict entries that were skipped (caller didn’t opt into overwrite).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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