pub struct MergeBlobResult {
pub content: Vec<u8>,
pub conflicted: bool,
}Expand description
The outcome of a 3-way blob merge.
Fields§
§content: Vec<u8>The merged blob bytes, including any conflict markers.
conflicted: boolTrue when at least one region conflicted and markers were written.
Trait Implementations§
Source§impl Clone for MergeBlobResult
impl Clone for MergeBlobResult
Source§fn clone(&self) -> MergeBlobResult
fn clone(&self) -> MergeBlobResult
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 MergeBlobResult
impl Debug for MergeBlobResult
impl Eq for MergeBlobResult
Source§impl PartialEq for MergeBlobResult
impl PartialEq for MergeBlobResult
Source§fn eq(&self, other: &MergeBlobResult) -> bool
fn eq(&self, other: &MergeBlobResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MergeBlobResult
Auto Trait Implementations§
impl Freeze for MergeBlobResult
impl RefUnwindSafe for MergeBlobResult
impl Send for MergeBlobResult
impl Sync for MergeBlobResult
impl Unpin for MergeBlobResult
impl UnsafeUnpin for MergeBlobResult
impl UnwindSafe for MergeBlobResult
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