pub struct FileConflict {
pub path: String,
pub reason: String,
pub resolution: String,
}Expand description
Information about a file conflict
Fields§
§path: StringPath to the conflicting file
reason: StringReason for the conflict
resolution: StringHow the conflict was resolved
Trait Implementations§
Source§impl Clone for FileConflict
impl Clone for FileConflict
Source§fn clone(&self) -> FileConflict
fn clone(&self) -> FileConflict
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FileConflict
impl RefUnwindSafe for FileConflict
impl Send for FileConflict
impl Sync for FileConflict
impl Unpin for FileConflict
impl UnwindSafe for FileConflict
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