pub struct GetActivityTaskOutput {
pub input: Option<String>,
pub task_token: Option<String>,
}
Fields§
§input: Option<String>
The string that contains the JSON input data for the task.
task_token: Option<String>
A token that identifies the scheduled task. This token must be copied and included in subsequent calls to SendTaskHeartbeat, SendTaskSuccess or SendTaskFailure in order to report the progress or completion of the task.
Trait Implementations§
Source§impl Clone for GetActivityTaskOutput
impl Clone for GetActivityTaskOutput
Source§fn clone(&self) -> GetActivityTaskOutput
fn clone(&self) -> GetActivityTaskOutput
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 GetActivityTaskOutput
impl Debug for GetActivityTaskOutput
Source§impl Default for GetActivityTaskOutput
impl Default for GetActivityTaskOutput
Source§fn default() -> GetActivityTaskOutput
fn default() -> GetActivityTaskOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetActivityTaskOutput
impl<'de> Deserialize<'de> for GetActivityTaskOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetActivityTaskOutput
impl PartialEq for GetActivityTaskOutput
impl StructuralPartialEq for GetActivityTaskOutput
Auto Trait Implementations§
impl Freeze for GetActivityTaskOutput
impl RefUnwindSafe for GetActivityTaskOutput
impl Send for GetActivityTaskOutput
impl Sync for GetActivityTaskOutput
impl Unpin for GetActivityTaskOutput
impl UnwindSafe for GetActivityTaskOutput
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