pub struct WorkerStats {
    pub queue_stats: QueueStats,
    pub max_workers: usize,
    pub active_workers: usize,
    pub available_workers: usize,
    pub registered_job_types: Vec<String>,
}Expand description
Worker statistics
Fields§
§queue_stats: QueueStats§max_workers: usize§active_workers: usize§available_workers: usize§registered_job_types: Vec<String>Trait Implementations§
Source§impl Clone for WorkerStats
 
impl Clone for WorkerStats
Source§fn clone(&self) -> WorkerStats
 
fn clone(&self) -> WorkerStats
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 moreAuto Trait Implementations§
impl Freeze for WorkerStats
impl RefUnwindSafe for WorkerStats
impl Send for WorkerStats
impl Sync for WorkerStats
impl Unpin for WorkerStats
impl UnwindSafe for WorkerStats
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