pub struct EffectAttemptedState {
pub idempotency_key: String,
pub input_hash: String,
pub idempotency_ttl_ms: u64,
pub provider: String,
pub attempted_at_event_id: String,
pub attempted_at_ms: u64,
}Fields§
§idempotency_key: String§input_hash: String§idempotency_ttl_ms: u64§provider: String§attempted_at_event_id: String§attempted_at_ms: u64Trait Implementations§
Source§impl Clone for EffectAttemptedState
impl Clone for EffectAttemptedState
Source§fn clone(&self) -> EffectAttemptedState
fn clone(&self) -> EffectAttemptedState
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 EffectAttemptedState
impl Debug for EffectAttemptedState
Source§impl<'de> Deserialize<'de> for EffectAttemptedState
impl<'de> Deserialize<'de> for EffectAttemptedState
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
impl Eq for EffectAttemptedState
Source§impl PartialEq for EffectAttemptedState
impl PartialEq for EffectAttemptedState
Source§fn eq(&self, other: &EffectAttemptedState) -> bool
fn eq(&self, other: &EffectAttemptedState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EffectAttemptedState
impl Serialize for EffectAttemptedState
impl StructuralPartialEq for EffectAttemptedState
Auto Trait Implementations§
impl Freeze for EffectAttemptedState
impl RefUnwindSafe for EffectAttemptedState
impl Send for EffectAttemptedState
impl Sync for EffectAttemptedState
impl Unpin for EffectAttemptedState
impl UnsafeUnpin for EffectAttemptedState
impl UnwindSafe for EffectAttemptedState
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