pub struct SendTaskFailureInput {
pub cause: Option<String>,
pub error: Option<String>,
pub task_token: String,
}
Fields§
§cause: Option<String>
A more detailed explanation of the cause of the failure.
error: Option<String>
The error code of the failure.
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 SendTaskFailureInput
impl Clone for SendTaskFailureInput
Source§fn clone(&self) -> SendTaskFailureInput
fn clone(&self) -> SendTaskFailureInput
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 SendTaskFailureInput
impl Debug for SendTaskFailureInput
Source§impl Default for SendTaskFailureInput
impl Default for SendTaskFailureInput
Source§fn default() -> SendTaskFailureInput
fn default() -> SendTaskFailureInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for SendTaskFailureInput
impl PartialEq for SendTaskFailureInput
Source§impl Serialize for SendTaskFailureInput
impl Serialize for SendTaskFailureInput
impl StructuralPartialEq for SendTaskFailureInput
Auto Trait Implementations§
impl Freeze for SendTaskFailureInput
impl RefUnwindSafe for SendTaskFailureInput
impl Send for SendTaskFailureInput
impl Sync for SendTaskFailureInput
impl Unpin for SendTaskFailureInput
impl UnwindSafe for SendTaskFailureInput
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