#[non_exhaustive]pub struct ActivityTaskCancelRequestedEventAttributes {
pub decision_task_completed_event_id: i64,
pub activity_id: String,
}
Expand description
Provides the details of the ActivityTaskCancelRequested
event.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.decision_task_completed_event_id: i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the RequestCancelActivityTask
decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
activity_id: String
The unique ID of the task.
Implementations§
source§impl ActivityTaskCancelRequestedEventAttributes
impl ActivityTaskCancelRequestedEventAttributes
sourcepub fn decision_task_completed_event_id(&self) -> i64
pub fn decision_task_completed_event_id(&self) -> i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the RequestCancelActivityTask
decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
sourcepub fn activity_id(&self) -> &str
pub fn activity_id(&self) -> &str
The unique ID of the task.
source§impl ActivityTaskCancelRequestedEventAttributes
impl ActivityTaskCancelRequestedEventAttributes
sourcepub fn builder() -> ActivityTaskCancelRequestedEventAttributesBuilder
pub fn builder() -> ActivityTaskCancelRequestedEventAttributesBuilder
Creates a new builder-style object to manufacture ActivityTaskCancelRequestedEventAttributes
.
Trait Implementations§
source§impl Clone for ActivityTaskCancelRequestedEventAttributes
impl Clone for ActivityTaskCancelRequestedEventAttributes
source§fn clone(&self) -> ActivityTaskCancelRequestedEventAttributes
fn clone(&self) -> ActivityTaskCancelRequestedEventAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ActivityTaskCancelRequestedEventAttributes
impl PartialEq for ActivityTaskCancelRequestedEventAttributes
source§fn eq(&self, other: &ActivityTaskCancelRequestedEventAttributes) -> bool
fn eq(&self, other: &ActivityTaskCancelRequestedEventAttributes) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ActivityTaskCancelRequestedEventAttributes
Auto Trait Implementations§
impl Freeze for ActivityTaskCancelRequestedEventAttributes
impl RefUnwindSafe for ActivityTaskCancelRequestedEventAttributes
impl Send for ActivityTaskCancelRequestedEventAttributes
impl Sync for ActivityTaskCancelRequestedEventAttributes
impl Unpin for ActivityTaskCancelRequestedEventAttributes
impl UnwindSafe for ActivityTaskCancelRequestedEventAttributes
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more