pub struct RecordActivityTaskHeartbeatInput {
pub details: Option<String>,
pub task_token: String,
}
Fields§
§details: Option<String>
If specified, contains details about the progress of the task.
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 RecordActivityTaskHeartbeatInput
impl Clone for RecordActivityTaskHeartbeatInput
Source§fn clone(&self) -> RecordActivityTaskHeartbeatInput
fn clone(&self) -> RecordActivityTaskHeartbeatInput
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 RecordActivityTaskHeartbeatInput
impl Default for RecordActivityTaskHeartbeatInput
Source§fn default() -> RecordActivityTaskHeartbeatInput
fn default() -> RecordActivityTaskHeartbeatInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RecordActivityTaskHeartbeatInput
impl PartialEq for RecordActivityTaskHeartbeatInput
Source§fn eq(&self, other: &RecordActivityTaskHeartbeatInput) -> bool
fn eq(&self, other: &RecordActivityTaskHeartbeatInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RecordActivityTaskHeartbeatInput
Auto Trait Implementations§
impl Freeze for RecordActivityTaskHeartbeatInput
impl RefUnwindSafe for RecordActivityTaskHeartbeatInput
impl Send for RecordActivityTaskHeartbeatInput
impl Sync for RecordActivityTaskHeartbeatInput
impl Unpin for RecordActivityTaskHeartbeatInput
impl UnwindSafe for RecordActivityTaskHeartbeatInput
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