pub struct DecisionTaskTimedOutEventAttributes {
pub scheduled_event_id: i64,
pub started_event_id: i64,
pub timeout_type: String,
}
Expand description
Provides the details of the DecisionTaskTimedOut
event.
Fields§
§scheduled_event_id: i64
The ID of the DecisionTaskScheduled
event that was recorded when this decision task was scheduled. 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 DecisionTaskStarted
event recorded when this decision task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
timeout_type: String
The type of timeout that expired before the decision task could be completed.
Trait Implementations§
Source§impl Clone for DecisionTaskTimedOutEventAttributes
impl Clone for DecisionTaskTimedOutEventAttributes
Source§fn clone(&self) -> DecisionTaskTimedOutEventAttributes
fn clone(&self) -> DecisionTaskTimedOutEventAttributes
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 Default for DecisionTaskTimedOutEventAttributes
impl Default for DecisionTaskTimedOutEventAttributes
Source§fn default() -> DecisionTaskTimedOutEventAttributes
fn default() -> DecisionTaskTimedOutEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DecisionTaskTimedOutEventAttributes
impl<'de> Deserialize<'de> for DecisionTaskTimedOutEventAttributes
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 DecisionTaskTimedOutEventAttributes
impl PartialEq for DecisionTaskTimedOutEventAttributes
Source§fn eq(&self, other: &DecisionTaskTimedOutEventAttributes) -> bool
fn eq(&self, other: &DecisionTaskTimedOutEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DecisionTaskTimedOutEventAttributes
Auto Trait Implementations§
impl Freeze for DecisionTaskTimedOutEventAttributes
impl RefUnwindSafe for DecisionTaskTimedOutEventAttributes
impl Send for DecisionTaskTimedOutEventAttributes
impl Sync for DecisionTaskTimedOutEventAttributes
impl Unpin for DecisionTaskTimedOutEventAttributes
impl UnwindSafe for DecisionTaskTimedOutEventAttributes
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