pub struct TaskStats {
pub total: usize,
pub pending: usize,
pub in_progress: usize,
pub completed: usize,
pub failed: usize,
pub blocked: usize,
pub skipped: usize,
}Expand description
Statistics about tasks
Fields§
§total: usizeTotal number of tasks.
pending: usizeNumber of pending tasks.
in_progress: usizeNumber of in-progress tasks.
completed: usizeNumber of completed tasks.
failed: usizeNumber of failed tasks.
blocked: usizeNumber of blocked tasks.
skipped: usizeNumber of skipped tasks.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskStats
impl RefUnwindSafe for TaskStats
impl Send for TaskStats
impl Sync for TaskStats
impl Unpin for TaskStats
impl UnsafeUnpin for TaskStats
impl UnwindSafe for TaskStats
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