pub struct MergeMove {
pub from: PathBuf,
pub to: PathBuf,
}Expand description
Outcome of a single file move during a merge.
Fields§
§from: PathBufSource path.
to: PathBufFinal target path (after any _Copy suffix).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MergeMove
impl RefUnwindSafe for MergeMove
impl Send for MergeMove
impl Sync for MergeMove
impl Unpin for MergeMove
impl UnsafeUnpin for MergeMove
impl UnwindSafe for MergeMove
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