pub struct ConflictReport {
pub total_conflicts: usize,
pub conflicts_resolved: usize,
pub conflicts_pending: usize,
pub conflicts_by_strategy: HashMap<String, usize>,
}Expand description
Conflict report
Fields§
§total_conflicts: usizeTotal conflicts detected
conflicts_resolved: usizeConflicts resolved
conflicts_pending: usizeConflicts pending
conflicts_by_strategy: HashMap<String, usize>Conflicts by strategy
Trait Implementations§
Source§impl Clone for ConflictReport
impl Clone for ConflictReport
Source§fn clone(&self) -> ConflictReport
fn clone(&self) -> ConflictReport
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 ConflictReport
impl Debug for ConflictReport
Source§impl<'de> Deserialize<'de> for ConflictReport
impl<'de> Deserialize<'de> for ConflictReport
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 ConflictReport
impl RefUnwindSafe for ConflictReport
impl Send for ConflictReport
impl Sync for ConflictReport
impl Unpin for ConflictReport
impl UnwindSafe for ConflictReport
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