pub struct Builder { /* private fields */ }
Expand description
A builder for ReportTaskProgressOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn canceled(self, input: bool) -> Self
pub fn canceled(self, input: bool) -> Self
If true, the calling task runner should cancel processing of the task. The task runner does not need to call SetTaskStatus
for canceled tasks.
sourcepub fn set_canceled(self, input: Option<bool>) -> Self
pub fn set_canceled(self, input: Option<bool>) -> Self
If true, the calling task runner should cancel processing of the task. The task runner does not need to call SetTaskStatus
for canceled tasks.
sourcepub fn build(self) -> ReportTaskProgressOutput
pub fn build(self) -> ReportTaskProgressOutput
Consumes the builder and constructs a ReportTaskProgressOutput
.