Struct fisher_common::structs::HealthDetails [] [src]

pub struct HealthDetails {
    pub queued_jobs: usize,
    pub busy_threads: u16,
    pub max_threads: u16,
}

This struct contains some information about how the processor is feeling.

Fields

The number of jobs in the queue, waiting to be processed.

The number of threads currently processing some jobs.

The total number of threads running, either waiting or working.

Trait Implementations

impl Copy for HealthDetails
[src]

impl Clone for HealthDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HealthDetails
[src]

Formats the value using the given formatter.