pub struct RespondActivityTaskCompletedInput {
pub result: Option<String>,
pub task_token: String,
}
Fields§
§result: Option<String>
The result of the activity task. It is a free form string that is implementation specific.
task_token: String
The taskToken
of the ActivityTask.
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 RespondActivityTaskCompletedInput
impl Clone for RespondActivityTaskCompletedInput
Source§fn clone(&self) -> RespondActivityTaskCompletedInput
fn clone(&self) -> RespondActivityTaskCompletedInput
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 RespondActivityTaskCompletedInput
impl Default for RespondActivityTaskCompletedInput
Source§fn default() -> RespondActivityTaskCompletedInput
fn default() -> RespondActivityTaskCompletedInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RespondActivityTaskCompletedInput
impl PartialEq for RespondActivityTaskCompletedInput
Source§fn eq(&self, other: &RespondActivityTaskCompletedInput) -> bool
fn eq(&self, other: &RespondActivityTaskCompletedInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RespondActivityTaskCompletedInput
Auto Trait Implementations§
impl Freeze for RespondActivityTaskCompletedInput
impl RefUnwindSafe for RespondActivityTaskCompletedInput
impl Send for RespondActivityTaskCompletedInput
impl Sync for RespondActivityTaskCompletedInput
impl Unpin for RespondActivityTaskCompletedInput
impl UnwindSafe for RespondActivityTaskCompletedInput
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