pub enum MergeOutcome {
Both {
sig_id: SigId,
stage_id: Option<StageId>,
},
Src {
sig_id: SigId,
stage_id: Option<StageId>,
},
Dst {
sig_id: SigId,
stage_id: Option<StageId>,
},
Conflict {
sig_id: SigId,
kind: ConflictKind,
base: Option<StageId>,
src: Option<StageId>,
dst: Option<StageId>,
},
}Variants§
Both
Both sides converged on the same op_id for this sig.
Src
Only src touched it.
Dst
Only dst touched it.
Conflict
Conflict: both sides touched it with different ops.
Trait Implementations§
Source§impl Clone for MergeOutcome
impl Clone for MergeOutcome
Source§fn clone(&self) -> MergeOutcome
fn clone(&self) -> MergeOutcome
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 MergeOutcome
impl Debug for MergeOutcome
Source§impl<'de> Deserialize<'de> for MergeOutcome
impl<'de> Deserialize<'de> for MergeOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MergeOutcome
impl PartialEq for MergeOutcome
Source§fn eq(&self, other: &MergeOutcome) -> bool
fn eq(&self, other: &MergeOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MergeOutcome
impl Serialize for MergeOutcome
impl Eq for MergeOutcome
impl StructuralPartialEq for MergeOutcome
Auto Trait Implementations§
impl Freeze for MergeOutcome
impl RefUnwindSafe for MergeOutcome
impl Send for MergeOutcome
impl Sync for MergeOutcome
impl Unpin for MergeOutcome
impl UnsafeUnpin for MergeOutcome
impl UnwindSafe for MergeOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.