pub struct SyncCheckpoint {
pub session_id: String,
pub connector_id: String,
pub cursor: Option<SyncCursor>,
pub updated_at: DateTime<Utc>,
pub metadata: Option<ConnectorMetadata>,
}Fields§
§session_id: String§connector_id: String§cursor: Option<SyncCursor>§updated_at: DateTime<Utc>§metadata: Option<ConnectorMetadata>Trait Implementations§
Source§impl Clone for SyncCheckpoint
impl Clone for SyncCheckpoint
Source§fn clone(&self) -> SyncCheckpoint
fn clone(&self) -> SyncCheckpoint
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 moreAuto Trait Implementations§
impl Freeze for SyncCheckpoint
impl RefUnwindSafe for SyncCheckpoint
impl Send for SyncCheckpoint
impl Sync for SyncCheckpoint
impl Unpin for SyncCheckpoint
impl UnsafeUnpin for SyncCheckpoint
impl UnwindSafe for SyncCheckpoint
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