pub struct CodeConflict {
pub node_id: String,
pub ours_hash: Option<String>,
pub theirs_hash: Option<String>,
pub base_hash: Option<String>,
}Expand description
A conflict detected during merge.
Fields§
§node_id: StringThe CodeNode ID that conflicts.
ours_hash: Option<String>Hash from the “ours” side.
theirs_hash: Option<String>Hash from the “theirs” side.
base_hash: Option<String>Hash from the common ancestor (base).
Trait Implementations§
Source§impl Clone for CodeConflict
impl Clone for CodeConflict
Source§fn clone(&self) -> CodeConflict
fn clone(&self) -> CodeConflict
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 moreAuto Trait Implementations§
impl Freeze for CodeConflict
impl RefUnwindSafe for CodeConflict
impl Send for CodeConflict
impl Sync for CodeConflict
impl Unpin for CodeConflict
impl UnsafeUnpin for CodeConflict
impl UnwindSafe for CodeConflict
Blanket Implementations§
impl<T> Allocation for T
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