pub struct SyncReport {
pub copied_to_a: Vec<RecordKey>,
pub copied_to_b: Vec<RecordKey>,
pub merged: Vec<RecordKey>,
pub conflicts: Vec<SyncConflict>,
}Expand description
What a sync run did.
Fields§
§copied_to_a: Vec<RecordKey>Keys copied into store A (were only in B).
copied_to_b: Vec<RecordKey>Keys copied into store B (were only in A).
merged: Vec<RecordKey>Keys auto-merged (append-only) and written to both stores.
conflicts: Vec<SyncConflict>Divergences needing manual resolution.
Trait Implementations§
Source§impl Clone for SyncReport
impl Clone for SyncReport
Source§fn clone(&self) -> SyncReport
fn clone(&self) -> SyncReport
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 SyncReport
impl Debug for SyncReport
Source§impl Default for SyncReport
impl Default for SyncReport
Source§fn default() -> SyncReport
fn default() -> SyncReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for SyncReport
impl PartialEq for SyncReport
impl Eq for SyncReport
impl StructuralPartialEq for SyncReport
Auto Trait Implementations§
impl Freeze for SyncReport
impl RefUnwindSafe for SyncReport
impl Send for SyncReport
impl Sync for SyncReport
impl Unpin for SyncReport
impl UnsafeUnpin for SyncReport
impl UnwindSafe for SyncReport
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