pub struct TimerCanceledEventAttributes {
pub decision_task_completed_event_id: i64,
pub started_event_id: i64,
pub timer_id: String,
}
Expand description
Provides the details of the TimerCanceled
event.
Fields§
§decision_task_completed_event_id: i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the CancelTimer
decision to cancel this timer. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
started_event_id: i64
The ID of the TimerStarted
event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
timer_id: String
The unique ID of the timer that was canceled.
Trait Implementations§
Source§impl Clone for TimerCanceledEventAttributes
impl Clone for TimerCanceledEventAttributes
Source§fn clone(&self) -> TimerCanceledEventAttributes
fn clone(&self) -> TimerCanceledEventAttributes
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 TimerCanceledEventAttributes
impl Debug for TimerCanceledEventAttributes
Source§impl Default for TimerCanceledEventAttributes
impl Default for TimerCanceledEventAttributes
Source§fn default() -> TimerCanceledEventAttributes
fn default() -> TimerCanceledEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimerCanceledEventAttributes
impl<'de> Deserialize<'de> for TimerCanceledEventAttributes
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 TimerCanceledEventAttributes
impl PartialEq for TimerCanceledEventAttributes
Source§fn eq(&self, other: &TimerCanceledEventAttributes) -> bool
fn eq(&self, other: &TimerCanceledEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TimerCanceledEventAttributes
Auto Trait Implementations§
impl Freeze for TimerCanceledEventAttributes
impl RefUnwindSafe for TimerCanceledEventAttributes
impl Send for TimerCanceledEventAttributes
impl Sync for TimerCanceledEventAttributes
impl Unpin for TimerCanceledEventAttributes
impl UnwindSafe for TimerCanceledEventAttributes
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