pub struct ReportTaskProgressInput {
pub fields: Option<Vec<Field>>,
pub task_id: String,
}
Expand description
Contains the parameters for ReportTaskProgress.
Fields§
§fields: Option<Vec<Field>>
Key-value pairs that define the properties of the ReportTaskProgressInput object.
task_id: String
The ID of the task assigned to the task runner. This value is provided in the response for PollForTask.
Trait Implementations§
Source§impl Clone for ReportTaskProgressInput
impl Clone for ReportTaskProgressInput
Source§fn clone(&self) -> ReportTaskProgressInput
fn clone(&self) -> ReportTaskProgressInput
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 ReportTaskProgressInput
impl Debug for ReportTaskProgressInput
Source§impl Default for ReportTaskProgressInput
impl Default for ReportTaskProgressInput
Source§fn default() -> ReportTaskProgressInput
fn default() -> ReportTaskProgressInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReportTaskProgressInput
impl PartialEq for ReportTaskProgressInput
Source§impl Serialize for ReportTaskProgressInput
impl Serialize for ReportTaskProgressInput
impl StructuralPartialEq for ReportTaskProgressInput
Auto Trait Implementations§
impl Freeze for ReportTaskProgressInput
impl RefUnwindSafe for ReportTaskProgressInput
impl Send for ReportTaskProgressInput
impl Sync for ReportTaskProgressInput
impl Unpin for ReportTaskProgressInput
impl UnwindSafe for ReportTaskProgressInput
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