pub struct ReportTaskProgressOutput {
pub canceled: bool,
}
Expand description
Contains the output of ReportTaskProgress.
Fields§
§canceled: bool
If true, the calling task runner should cancel processing of the task. The task runner does not need to call SetTaskStatus for canceled tasks.
Trait Implementations§
Source§impl Clone for ReportTaskProgressOutput
impl Clone for ReportTaskProgressOutput
Source§fn clone(&self) -> ReportTaskProgressOutput
fn clone(&self) -> ReportTaskProgressOutput
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 ReportTaskProgressOutput
impl Debug for ReportTaskProgressOutput
Source§impl Default for ReportTaskProgressOutput
impl Default for ReportTaskProgressOutput
Source§fn default() -> ReportTaskProgressOutput
fn default() -> ReportTaskProgressOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReportTaskProgressOutput
impl<'de> Deserialize<'de> for ReportTaskProgressOutput
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 ReportTaskProgressOutput
impl PartialEq for ReportTaskProgressOutput
impl StructuralPartialEq for ReportTaskProgressOutput
Auto Trait Implementations§
impl Freeze for ReportTaskProgressOutput
impl RefUnwindSafe for ReportTaskProgressOutput
impl Send for ReportTaskProgressOutput
impl Sync for ReportTaskProgressOutput
impl Unpin for ReportTaskProgressOutput
impl UnwindSafe for ReportTaskProgressOutput
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