pub struct SyncPullResult {
pub fetched: usize,
pub created: usize,
pub updated: usize,
pub duplicate: usize,
pub skipped: usize,
pub filtered: usize,
pub batches: usize,
pub has_more: bool,
pub last_cursor: Option<SyncCursor>,
pub checkpoint: Option<SyncCheckpoint>,
}Fields§
§fetched: usize§created: usize§updated: usize§duplicate: usize§skipped: usize§filtered: usize§batches: usize§has_more: bool§last_cursor: Option<SyncCursor>§checkpoint: Option<SyncCheckpoint>Trait Implementations§
Source§impl Clone for SyncPullResult
impl Clone for SyncPullResult
Source§fn clone(&self) -> SyncPullResult
fn clone(&self) -> SyncPullResult
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 SyncPullResult
impl Debug for SyncPullResult
Source§impl Default for SyncPullResult
impl Default for SyncPullResult
Source§fn default() -> SyncPullResult
fn default() -> SyncPullResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SyncPullResult
impl RefUnwindSafe for SyncPullResult
impl Send for SyncPullResult
impl Sync for SyncPullResult
impl Unpin for SyncPullResult
impl UnsafeUnpin for SyncPullResult
impl UnwindSafe for SyncPullResult
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