pub struct TimerStartedEventAttributes {
pub control: Option<String>,
pub decision_task_completed_event_id: i64,
pub start_to_fire_timeout: String,
pub timer_id: String,
}
Expand description
Provides the details of the TimerStarted
event.
Fields§
§control: Option<String>
Data attached to the event that can be used by the decider in subsequent workflow tasks.
decision_task_completed_event_id: i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the StartTimer
decision for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
start_to_fire_timeout: String
The duration of time after which the timer fires.
The duration is specified in seconds, an integer greater than or equal to 0
.
timer_id: String
The unique ID of the timer that was started.
Trait Implementations§
Source§impl Clone for TimerStartedEventAttributes
impl Clone for TimerStartedEventAttributes
Source§fn clone(&self) -> TimerStartedEventAttributes
fn clone(&self) -> TimerStartedEventAttributes
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 TimerStartedEventAttributes
impl Debug for TimerStartedEventAttributes
Source§impl Default for TimerStartedEventAttributes
impl Default for TimerStartedEventAttributes
Source§fn default() -> TimerStartedEventAttributes
fn default() -> TimerStartedEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimerStartedEventAttributes
impl<'de> Deserialize<'de> for TimerStartedEventAttributes
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 StructuralPartialEq for TimerStartedEventAttributes
Auto Trait Implementations§
impl Freeze for TimerStartedEventAttributes
impl RefUnwindSafe for TimerStartedEventAttributes
impl Send for TimerStartedEventAttributes
impl Sync for TimerStartedEventAttributes
impl Unpin for TimerStartedEventAttributes
impl UnwindSafe for TimerStartedEventAttributes
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