pub struct Conflict {
pub path: String,
pub base_hash: Option<[u8; 16]>,
pub local_hash: Option<[u8; 16]>,
pub remote_hash: Option<[u8; 16]>,
}Expand description
A conflict between base, local, and remote versions of a file.
Fields§
§path: String§base_hash: Option<[u8; 16]>§local_hash: Option<[u8; 16]>§remote_hash: Option<[u8; 16]>Trait Implementations§
impl StructuralPartialEq for Conflict
Auto Trait Implementations§
impl Freeze for Conflict
impl RefUnwindSafe for Conflict
impl Send for Conflict
impl Sync for Conflict
impl Unpin for Conflict
impl UnsafeUnpin for Conflict
impl UnwindSafe for Conflict
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