pub enum ConflictType {
ConcurrentModification,
VersionMismatch,
TimestampInconsistency,
ContentMismatch,
BranchMergeConflict,
DependencyConflict,
}Expand description
Types of version conflicts
Variants§
ConcurrentModification
Concurrent modifications
VersionMismatch
Version number mismatch
TimestampInconsistency
Timestamp inconsistency
ContentMismatch
Content hash mismatch
BranchMergeConflict
Branch merge conflict
DependencyConflict
Dependency conflict
Trait Implementations§
Source§impl Clone for ConflictType
impl Clone for ConflictType
Source§fn clone(&self) -> ConflictType
fn clone(&self) -> ConflictType
Returns a duplicate 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 ConflictType
impl Debug for ConflictType
Source§impl<'de> Deserialize<'de> for ConflictType
impl<'de> Deserialize<'de> for ConflictType
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
Auto Trait Implementations§
impl Freeze for ConflictType
impl RefUnwindSafe for ConflictType
impl Send for ConflictType
impl Sync for ConflictType
impl Unpin for ConflictType
impl UnwindSafe for ConflictType
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