pub struct TaskClassSnapshot {
pub active: usize,
pub completed: u64,
pub cancelled: u64,
pub failed: u64,
pub panicked: u64,
}Fields§
§active: usize§completed: u64§cancelled: u64§failed: u64§panicked: u64Trait Implementations§
Source§impl Clone for TaskClassSnapshot
impl Clone for TaskClassSnapshot
Source§fn clone(&self) -> TaskClassSnapshot
fn clone(&self) -> TaskClassSnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TaskClassSnapshot
Source§impl Debug for TaskClassSnapshot
impl Debug for TaskClassSnapshot
Source§impl Default for TaskClassSnapshot
impl Default for TaskClassSnapshot
Source§fn default() -> TaskClassSnapshot
fn default() -> TaskClassSnapshot
Returns the “default value” for a type. Read more
impl Eq for TaskClassSnapshot
Source§impl PartialEq for TaskClassSnapshot
impl PartialEq for TaskClassSnapshot
impl StructuralPartialEq for TaskClassSnapshot
Auto Trait Implementations§
impl Freeze for TaskClassSnapshot
impl RefUnwindSafe for TaskClassSnapshot
impl Send for TaskClassSnapshot
impl Sync for TaskClassSnapshot
impl Unpin for TaskClassSnapshot
impl UnsafeUnpin for TaskClassSnapshot
impl UnwindSafe for TaskClassSnapshot
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