pub struct SyncDeltaResult {
pub events_applied: u32,
pub pages_fetched: u32,
pub last_applied_event_seq: Option<String>,
pub has_more: bool,
pub snapshot_required: bool,
pub retention_floor_event_seq: Option<String>,
pub warnings: Vec<String>,
}Fields§
§events_applied: u32§pages_fetched: u32§last_applied_event_seq: Option<String>§has_more: bool§snapshot_required: bool§retention_floor_event_seq: Option<String>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for SyncDeltaResult
impl Clone for SyncDeltaResult
Source§fn clone(&self) -> SyncDeltaResult
fn clone(&self) -> SyncDeltaResult
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 SyncDeltaResult
impl Debug for SyncDeltaResult
Source§impl<'de> Deserialize<'de> for SyncDeltaResult
impl<'de> Deserialize<'de> for SyncDeltaResult
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
impl Eq for SyncDeltaResult
Source§impl PartialEq for SyncDeltaResult
impl PartialEq for SyncDeltaResult
Source§fn eq(&self, other: &SyncDeltaResult) -> bool
fn eq(&self, other: &SyncDeltaResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SyncDeltaResult
impl Serialize for SyncDeltaResult
impl StructuralPartialEq for SyncDeltaResult
Auto Trait Implementations§
impl Freeze for SyncDeltaResult
impl RefUnwindSafe for SyncDeltaResult
impl Send for SyncDeltaResult
impl Sync for SyncDeltaResult
impl Unpin for SyncDeltaResult
impl UnsafeUnpin for SyncDeltaResult
impl UnwindSafe for SyncDeltaResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.