pub struct SyncFailed {
pub sync: SyncId,
pub connector: ConnectorId,
pub account: AccountId,
pub kind: ErrorKind,
pub message: String,
pub retry_at: Option<OffsetDateTime>,
}Fields§
§sync: SyncId§connector: ConnectorId§account: AccountId§kind: ErrorKind§message: String§retry_at: Option<OffsetDateTime>When the platform intends to try again, if it does.
Trait Implementations§
Source§impl Clone for SyncFailed
impl Clone for SyncFailed
Source§fn clone(&self) -> SyncFailed
fn clone(&self) -> SyncFailed
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 SyncFailed
impl Debug for SyncFailed
Source§impl<'de> Deserialize<'de> for SyncFailed
impl<'de> Deserialize<'de> for SyncFailed
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
Auto Trait Implementations§
impl Freeze for SyncFailed
impl RefUnwindSafe for SyncFailed
impl Send for SyncFailed
impl Sync for SyncFailed
impl Unpin for SyncFailed
impl UnsafeUnpin for SyncFailed
impl UnwindSafe for SyncFailed
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