pub struct WorkRuntimeHealthSnapshot {
pub total_count: usize,
pub ready_count: usize,
pub leased_count: usize,
pub running_count: usize,
pub blocked_count: usize,
pub retry_pending_count: usize,
pub terminal_count: usize,
pub archived_count: usize,
pub expired_lease_count: usize,
}Fields§
§total_count: usize§ready_count: usize§leased_count: usize§running_count: usize§blocked_count: usize§retry_pending_count: usize§terminal_count: usize§archived_count: usize§expired_lease_count: usizeTrait Implementations§
Source§impl Clone for WorkRuntimeHealthSnapshot
impl Clone for WorkRuntimeHealthSnapshot
Source§fn clone(&self) -> WorkRuntimeHealthSnapshot
fn clone(&self) -> WorkRuntimeHealthSnapshot
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 WorkRuntimeHealthSnapshot
impl Debug for WorkRuntimeHealthSnapshot
Source§impl<'de> Deserialize<'de> for WorkRuntimeHealthSnapshot
impl<'de> Deserialize<'de> for WorkRuntimeHealthSnapshot
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
impl Eq for WorkRuntimeHealthSnapshot
impl StructuralPartialEq for WorkRuntimeHealthSnapshot
Auto Trait Implementations§
impl Freeze for WorkRuntimeHealthSnapshot
impl RefUnwindSafe for WorkRuntimeHealthSnapshot
impl Send for WorkRuntimeHealthSnapshot
impl Sync for WorkRuntimeHealthSnapshot
impl Unpin for WorkRuntimeHealthSnapshot
impl UnsafeUnpin for WorkRuntimeHealthSnapshot
impl UnwindSafe for WorkRuntimeHealthSnapshot
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