pub struct SyncResponse {
pub id: Uuid,
pub status: SyncStatus,
pub syncable_type: String,
pub syncable_id: Uuid,
pub syncing_at: Option<DateTime<Utc>>,
pub completed_at: Option<DateTime<Utc>>,
pub window_start_date: Option<DateTime<Utc>>,
pub window_end_date: Option<DateTime<Utc>>,
pub message: String,
}Expand description
Sync response
Fields§
§id: UuidSync ID
status: SyncStatusSync status
syncable_type: StringSyncable type
syncable_id: UuidSyncable ID
syncing_at: Option<DateTime<Utc>>Syncing start timestamp
completed_at: Option<DateTime<Utc>>Completion timestamp
window_start_date: Option<DateTime<Utc>>Window start date
window_end_date: Option<DateTime<Utc>>Window end date
message: StringResponse message
Trait Implementations§
Source§impl Clone for SyncResponse
impl Clone for SyncResponse
Source§fn clone(&self) -> SyncResponse
fn clone(&self) -> SyncResponse
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 SyncResponse
impl Debug for SyncResponse
Source§impl<'de> Deserialize<'de> for SyncResponse
impl<'de> Deserialize<'de> for SyncResponse
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
Source§impl PartialEq for SyncResponse
impl PartialEq for SyncResponse
Source§impl Serialize for SyncResponse
impl Serialize for SyncResponse
impl Eq for SyncResponse
impl StructuralPartialEq for SyncResponse
Auto Trait Implementations§
impl Freeze for SyncResponse
impl RefUnwindSafe for SyncResponse
impl Send for SyncResponse
impl Sync for SyncResponse
impl Unpin for SyncResponse
impl UnwindSafe for SyncResponse
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