pub struct RunsByState {
pub scheduled: usize,
pub ready: usize,
pub leased: usize,
pub running: usize,
pub retry_wait: usize,
pub completed: usize,
pub failed: usize,
pub canceled: usize,
}Expand description
Deterministic run-state counts.
Fields§
§scheduled: usizeCount of Scheduled runs.
ready: usizeCount of Ready runs.
leased: usizeCount of Leased runs.
running: usizeCount of Running runs.
retry_wait: usizeCount of RetryWait runs.
completed: usizeCount of Completed runs.
failed: usizeCount of Failed runs.
canceled: usizeCount of Canceled runs.
Trait Implementations§
Source§impl Clone for RunsByState
impl Clone for RunsByState
Source§fn clone(&self) -> RunsByState
fn clone(&self) -> RunsByState
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 RunsByState
impl Debug for RunsByState
Source§impl PartialEq for RunsByState
impl PartialEq for RunsByState
Source§impl Serialize for RunsByState
impl Serialize for RunsByState
impl Copy for RunsByState
impl Eq for RunsByState
impl StructuralPartialEq for RunsByState
Auto Trait Implementations§
impl Freeze for RunsByState
impl RefUnwindSafe for RunsByState
impl Send for RunsByState
impl Sync for RunsByState
impl Unpin for RunsByState
impl UnsafeUnpin for RunsByState
impl UnwindSafe for RunsByState
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