pub struct IntegrationAttempt {
pub attempt_id: String,
pub instructions: String,
pub mode: String,
pub time: IntegrationAttemptStatusPendingTime,
pub url: String,
}Fields§
§attempt_id: String§instructions: String§mode: String§time: IntegrationAttemptStatusPendingTime§url: StringTrait Implementations§
Source§impl Clone for IntegrationAttempt
impl Clone for IntegrationAttempt
Source§fn clone(&self) -> IntegrationAttempt
fn clone(&self) -> IntegrationAttempt
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 IntegrationAttempt
impl Debug for IntegrationAttempt
Source§impl<'de> Deserialize<'de> for IntegrationAttempt
impl<'de> Deserialize<'de> for IntegrationAttempt
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 IntegrationAttempt
impl PartialEq for IntegrationAttempt
Source§impl Serialize for IntegrationAttempt
impl Serialize for IntegrationAttempt
impl StructuralPartialEq for IntegrationAttempt
Auto Trait Implementations§
impl Freeze for IntegrationAttempt
impl RefUnwindSafe for IntegrationAttempt
impl Send for IntegrationAttempt
impl Sync for IntegrationAttempt
impl Unpin for IntegrationAttempt
impl UnsafeUnpin for IntegrationAttempt
impl UnwindSafe for IntegrationAttempt
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