pub struct TubeStatistics {Show 14 fields
pub name: String,
pub jobs_urgent: u64,
pub jobs_ready: u64,
pub jobs_reserved: u64,
pub jobs_delayed: u64,
pub jobs_buried: u64,
pub total_jobs: u64,
pub using: usize,
pub waiting: usize,
pub watching: usize,
pub pause: i64,
pub cmd_delete: u64,
pub cmd_pause_tube: u64,
pub pause_time_left: u32,
}Expand description
Tube statistics
Fields§
§name: String§jobs_urgent: u64§jobs_ready: u64§jobs_reserved: u64§jobs_delayed: u64§jobs_buried: u64§total_jobs: u64§using: usize§waiting: usize§watching: usize§pause: i64§cmd_delete: u64§cmd_pause_tube: u64§pause_time_left: u32Trait Implementations§
Source§impl Debug for TubeStatistics
impl Debug for TubeStatistics
Source§impl<'de> Deserialize<'de> for TubeStatistics
impl<'de> Deserialize<'de> for TubeStatistics
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
Auto Trait Implementations§
impl Freeze for TubeStatistics
impl RefUnwindSafe for TubeStatistics
impl Send for TubeStatistics
impl Sync for TubeStatistics
impl Unpin for TubeStatistics
impl UnwindSafe for TubeStatistics
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