pub struct ActivityTaskTimedOutEventAttributes {
pub details: Option<String>,
pub scheduled_event_id: i64,
pub started_event_id: i64,
pub timeout_type: String,
}
Expand description
Provides the details of the ActivityTaskTimedOut
event.
Fields§
§details: Option<String>
Contains the content of the details
parameter for the last call made by the activity to RecordActivityTaskHeartbeat
.
scheduled_event_id: i64
The ID of the ActivityTaskScheduled
event that was recorded when this activity 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 ActivityTaskStarted
event recorded when this activity 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 the timeout that caused this event.
Trait Implementations§
Source§impl Clone for ActivityTaskTimedOutEventAttributes
impl Clone for ActivityTaskTimedOutEventAttributes
Source§fn clone(&self) -> ActivityTaskTimedOutEventAttributes
fn clone(&self) -> ActivityTaskTimedOutEventAttributes
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 ActivityTaskTimedOutEventAttributes
impl Default for ActivityTaskTimedOutEventAttributes
Source§fn default() -> ActivityTaskTimedOutEventAttributes
fn default() -> ActivityTaskTimedOutEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityTaskTimedOutEventAttributes
impl<'de> Deserialize<'de> for ActivityTaskTimedOutEventAttributes
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 ActivityTaskTimedOutEventAttributes
impl PartialEq for ActivityTaskTimedOutEventAttributes
Source§fn eq(&self, other: &ActivityTaskTimedOutEventAttributes) -> bool
fn eq(&self, other: &ActivityTaskTimedOutEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ActivityTaskTimedOutEventAttributes
Auto Trait Implementations§
impl Freeze for ActivityTaskTimedOutEventAttributes
impl RefUnwindSafe for ActivityTaskTimedOutEventAttributes
impl Send for ActivityTaskTimedOutEventAttributes
impl Sync for ActivityTaskTimedOutEventAttributes
impl Unpin for ActivityTaskTimedOutEventAttributes
impl UnwindSafe for ActivityTaskTimedOutEventAttributes
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