pub struct SendTaskSuccessInput {
pub output: String,
pub task_token: String,
}
Fields§
§output: String
The JSON output of the task.
task_token: String
The token that represents this task. Task tokens are generated by Step Functions when tasks are assigned to a worker, or in the context object when a workflow enters a task state. See GetActivityTaskOutput$taskToken.
Trait Implementations§
Source§impl Clone for SendTaskSuccessInput
impl Clone for SendTaskSuccessInput
Source§fn clone(&self) -> SendTaskSuccessInput
fn clone(&self) -> SendTaskSuccessInput
Returns a copy 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 Debug for SendTaskSuccessInput
impl Debug for SendTaskSuccessInput
Source§impl Default for SendTaskSuccessInput
impl Default for SendTaskSuccessInput
Source§fn default() -> SendTaskSuccessInput
fn default() -> SendTaskSuccessInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for SendTaskSuccessInput
impl PartialEq for SendTaskSuccessInput
Source§impl Serialize for SendTaskSuccessInput
impl Serialize for SendTaskSuccessInput
impl StructuralPartialEq for SendTaskSuccessInput
Auto Trait Implementations§
impl Freeze for SendTaskSuccessInput
impl RefUnwindSafe for SendTaskSuccessInput
impl Send for SendTaskSuccessInput
impl Sync for SendTaskSuccessInput
impl Unpin for SendTaskSuccessInput
impl UnwindSafe for SendTaskSuccessInput
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