pub struct Builder { /* private fields */ }
Expand description
A builder for ReportTaskProgressOutput
.
Implementations
sourceimpl 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
.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more