pub struct SyncReport {
pub pushed: u32,
pub applied: Vec<String>,
pub rejected: Vec<String>,
pub retryable: Vec<String>,
pub conflicts: u32,
pub commits_applied: u32,
pub segment_rows_applied: u32,
pub bootstrapping: Vec<String>,
pub resets: Vec<String>,
pub revoked: Vec<String>,
pub failed: Vec<String>,
pub schema_floor: Option<SchemaFloor>,
}Fields§
§pushed: u32§applied: Vec<String>§rejected: Vec<String>§retryable: Vec<String>§conflicts: u32§commits_applied: u32§segment_rows_applied: u32§bootstrapping: Vec<String>§resets: Vec<String>§revoked: Vec<String>§failed: Vec<String>§schema_floor: Option<SchemaFloor>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 (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 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
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