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