pub struct MergeReport {
pub moved: Vec<MergeMove>,
}Expand description
Report from merge_directories.
Fields§
§moved: Vec<MergeMove>Files moved (or that would be moved in dry-run).
Trait Implementations§
Source§impl Clone for MergeReport
impl Clone for MergeReport
Source§fn clone(&self) -> MergeReport
fn clone(&self) -> MergeReport
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 MergeReport
impl Debug for MergeReport
Source§impl Default for MergeReport
impl Default for MergeReport
Source§fn default() -> MergeReport
fn default() -> MergeReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MergeReport
impl RefUnwindSafe for MergeReport
impl Send for MergeReport
impl Sync for MergeReport
impl Unpin for MergeReport
impl UnsafeUnpin for MergeReport
impl UnwindSafe for MergeReport
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