pub struct RespondDecisionTaskCompletedInput {
pub decisions: Option<Vec<Decision>>,
pub execution_context: Option<String>,
pub task_token: String,
}
Expand description
Input data for a TaskCompleted response to a decision task.
Fields§
§decisions: Option<Vec<Decision>>
The list of decisions (possibly empty) made by the decider while processing this decision task. See the docs for the Decision structure for details.
execution_context: Option<String>
User defined context to add to workflow execution.
task_token: String
The taskToken
from the DecisionTask.
taskToken
is generated by the service and should be treated as an opaque value. If the task is passed to another process, its taskToken
must also be passed. This enables it to provide its progress and respond with results.
Trait Implementations§
Source§impl Clone for RespondDecisionTaskCompletedInput
impl Clone for RespondDecisionTaskCompletedInput
Source§fn clone(&self) -> RespondDecisionTaskCompletedInput
fn clone(&self) -> RespondDecisionTaskCompletedInput
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 RespondDecisionTaskCompletedInput
impl Default for RespondDecisionTaskCompletedInput
Source§fn default() -> RespondDecisionTaskCompletedInput
fn default() -> RespondDecisionTaskCompletedInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RespondDecisionTaskCompletedInput
impl PartialEq for RespondDecisionTaskCompletedInput
Source§fn eq(&self, other: &RespondDecisionTaskCompletedInput) -> bool
fn eq(&self, other: &RespondDecisionTaskCompletedInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RespondDecisionTaskCompletedInput
Auto Trait Implementations§
impl Freeze for RespondDecisionTaskCompletedInput
impl RefUnwindSafe for RespondDecisionTaskCompletedInput
impl Send for RespondDecisionTaskCompletedInput
impl Sync for RespondDecisionTaskCompletedInput
impl Unpin for RespondDecisionTaskCompletedInput
impl UnwindSafe for RespondDecisionTaskCompletedInput
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