pub struct DecisionTaskStartedEventAttributes {
pub identity: Option<String>,
pub scheduled_event_id: i64,
}
Expand description
Provides the details of the DecisionTaskStarted
event.
Fields§
§identity: Option<String>
Identity of the decider making the request. This enables diagnostic tracing when problems arise. The form of this identity is user defined.
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.
Trait Implementations§
Source§impl Clone for DecisionTaskStartedEventAttributes
impl Clone for DecisionTaskStartedEventAttributes
Source§fn clone(&self) -> DecisionTaskStartedEventAttributes
fn clone(&self) -> DecisionTaskStartedEventAttributes
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 DecisionTaskStartedEventAttributes
impl Default for DecisionTaskStartedEventAttributes
Source§fn default() -> DecisionTaskStartedEventAttributes
fn default() -> DecisionTaskStartedEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DecisionTaskStartedEventAttributes
impl<'de> Deserialize<'de> for DecisionTaskStartedEventAttributes
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 DecisionTaskStartedEventAttributes
impl PartialEq for DecisionTaskStartedEventAttributes
Source§fn eq(&self, other: &DecisionTaskStartedEventAttributes) -> bool
fn eq(&self, other: &DecisionTaskStartedEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DecisionTaskStartedEventAttributes
Auto Trait Implementations§
impl Freeze for DecisionTaskStartedEventAttributes
impl RefUnwindSafe for DecisionTaskStartedEventAttributes
impl Send for DecisionTaskStartedEventAttributes
impl Sync for DecisionTaskStartedEventAttributes
impl Unpin for DecisionTaskStartedEventAttributes
impl UnwindSafe for DecisionTaskStartedEventAttributes
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