pub struct SyncBucketState {
pub seq: i64,
pub date: i64,
}Expand description
Durable cursor for one Inline update bucket.
Fields§
§seq: i64Last coherently applied sequence for the bucket.
date: i64Newest coherently applied update date for the bucket, in Unix seconds.
Trait Implementations§
Source§impl Clone for SyncBucketState
impl Clone for SyncBucketState
Source§fn clone(&self) -> SyncBucketState
fn clone(&self) -> SyncBucketState
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 moreimpl Copy for SyncBucketState
Source§impl Debug for SyncBucketState
impl Debug for SyncBucketState
Source§impl Default for SyncBucketState
impl Default for SyncBucketState
Source§fn default() -> SyncBucketState
fn default() -> SyncBucketState
Returns the “default value” for a type. Read more
impl Eq for SyncBucketState
Source§impl PartialEq for SyncBucketState
impl PartialEq for SyncBucketState
impl StructuralPartialEq for SyncBucketState
Auto Trait Implementations§
impl Freeze for SyncBucketState
impl RefUnwindSafe for SyncBucketState
impl Send for SyncBucketState
impl Sync for SyncBucketState
impl Unpin for SyncBucketState
impl UnsafeUnpin for SyncBucketState
impl UnwindSafe for SyncBucketState
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