pub struct SummaryInfo {
pub queued: u32,
pub complete: u32,
pub failed: u32,
pub running: u32,
pub starting: u32,
pub lost: u32,
}Expand description
The summary for instances of a particular job.
Fields§
§queued: u32The number of instances of this job that have been queued.
complete: u32The number of instances of this job that have completed.
failed: u32The number of instances of this job that have failed.
running: u32The number of instances of this job that are running.
starting: u32The number of instances of this job that are starting.
lost: u32The number of instances of this job that have been lost.
Trait Implementations§
Source§impl Clone for SummaryInfo
impl Clone for SummaryInfo
Source§fn clone(&self) -> SummaryInfo
fn clone(&self) -> SummaryInfo
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 SummaryInfo
impl Debug for SummaryInfo
Source§impl Default for SummaryInfo
impl Default for SummaryInfo
Source§fn default() -> SummaryInfo
fn default() -> SummaryInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SummaryInfo
impl<'de> Deserialize<'de> for SummaryInfo
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 SummaryInfo
impl PartialEq for SummaryInfo
Source§impl Serialize for SummaryInfo
impl Serialize for SummaryInfo
impl Eq for SummaryInfo
impl StructuralPartialEq for SummaryInfo
Auto Trait Implementations§
impl Freeze for SummaryInfo
impl RefUnwindSafe for SummaryInfo
impl Send for SummaryInfo
impl Sync for SummaryInfo
impl Unpin for SummaryInfo
impl UnwindSafe for SummaryInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.