pub struct ContentMerge {
pub merged_blob_id: ObjectId,
pub resolution: Resolution,
}
Expand description
Information about a blob content merge for use in a Resolution
.
Note that content merges always count as success to avoid duplication of cases, which forces callers
to check for the resolution
field.
Fields§
§merged_blob_id: ObjectId
The fully merged blob.
resolution: Resolution
Identify the kind of resolution of the blob merge. Note that it may be conflicting.
Trait Implementations§
Source§impl Clone for ContentMerge
impl Clone for ContentMerge
Source§fn clone(&self) -> ContentMerge
fn clone(&self) -> ContentMerge
Returns a copy 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 moreSource§impl Debug for ContentMerge
impl Debug for ContentMerge
impl Copy for ContentMerge
Auto Trait Implementations§
impl Freeze for ContentMerge
impl RefUnwindSafe for ContentMerge
impl Send for ContentMerge
impl Sync for ContentMerge
impl Unpin for ContentMerge
impl UnwindSafe for ContentMerge
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