pub struct DataRepositoryTaskStatus {
pub failed_count: Option<i64>,
pub last_updated_time: Option<f64>,
pub succeeded_count: Option<i64>,
pub total_count: Option<i64>,
}Expand description
Provides the task status showing a running total of the total number of files to be processed, the number successfully processed, and the number of files the task failed to process.
Fields§
§failed_count: Option<i64>A running total of the number of files that the task failed to process.
last_updated_time: Option<f64>The time at which the task status was last updated.
succeeded_count: Option<i64>A running total of the number of files that the task has successfully processed.
total_count: Option<i64>The total number of files that the task will process. While a task is executing, the sum of SucceededCount plus FailedCount may not equal TotalCount. When the task is complete, TotalCount equals the sum of SucceededCount plus FailedCount.
Trait Implementations§
Source§impl Clone for DataRepositoryTaskStatus
impl Clone for DataRepositoryTaskStatus
Source§fn clone(&self) -> DataRepositoryTaskStatus
fn clone(&self) -> DataRepositoryTaskStatus
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 Debug for DataRepositoryTaskStatus
impl Debug for DataRepositoryTaskStatus
Source§impl Default for DataRepositoryTaskStatus
impl Default for DataRepositoryTaskStatus
Source§fn default() -> DataRepositoryTaskStatus
fn default() -> DataRepositoryTaskStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataRepositoryTaskStatus
impl<'de> Deserialize<'de> for DataRepositoryTaskStatus
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 DataRepositoryTaskStatus
impl PartialEq for DataRepositoryTaskStatus
impl StructuralPartialEq for DataRepositoryTaskStatus
Auto Trait Implementations§
impl Freeze for DataRepositoryTaskStatus
impl RefUnwindSafe for DataRepositoryTaskStatus
impl Send for DataRepositoryTaskStatus
impl Sync for DataRepositoryTaskStatus
impl Unpin for DataRepositoryTaskStatus
impl UnwindSafe for DataRepositoryTaskStatus
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