pub enum IntegrationAttemptStatus {
Pending {
time: IntegrationAttemptStatusPendingTime,
},
Complete {
time: IntegrationAttemptStatusPendingTime,
},
Failed {
message: String,
time: IntegrationAttemptStatusPendingTime,
},
Expired {
time: IntegrationAttemptStatusPendingTime,
},
}Variants§
Trait Implementations§
Source§impl Clone for IntegrationAttemptStatus
impl Clone for IntegrationAttemptStatus
Source§fn clone(&self) -> IntegrationAttemptStatus
fn clone(&self) -> IntegrationAttemptStatus
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 IntegrationAttemptStatus
impl Debug for IntegrationAttemptStatus
Source§impl<'de> Deserialize<'de> for IntegrationAttemptStatus
impl<'de> Deserialize<'de> for IntegrationAttemptStatus
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 IntegrationAttemptStatus
impl PartialEq for IntegrationAttemptStatus
Source§impl Serialize for IntegrationAttemptStatus
impl Serialize for IntegrationAttemptStatus
impl StructuralPartialEq for IntegrationAttemptStatus
Auto Trait Implementations§
impl Freeze for IntegrationAttemptStatus
impl RefUnwindSafe for IntegrationAttemptStatus
impl Send for IntegrationAttemptStatus
impl Sync for IntegrationAttemptStatus
impl Unpin for IntegrationAttemptStatus
impl UnsafeUnpin for IntegrationAttemptStatus
impl UnwindSafe for IntegrationAttemptStatus
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