pub struct MergeOutput {
pub content: Vec<u8>,
pub conflicts: usize,
}Expand description
Result of a three-way merge.
Fields§
§content: Vec<u8>Merged file content.
conflicts: usizeNumber of conflict regions (0 = clean merge).
Auto Trait Implementations§
impl Freeze for MergeOutput
impl RefUnwindSafe for MergeOutput
impl Send for MergeOutput
impl Sync for MergeOutput
impl Unpin for MergeOutput
impl UnsafeUnpin for MergeOutput
impl UnwindSafe for MergeOutput
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