pub struct ServerStatistics {
pub server_count: u32,
pub worker_count: u32,
pub queues: Vec<QueueStatistics>,
pub jobs: JobStatistics,
pub recent_jobs: Vec<JobDetails>,
}
Fields§
§server_count: u32
§worker_count: u32
§queues: Vec<QueueStatistics>
§jobs: JobStatistics
§recent_jobs: Vec<JobDetails>
Trait Implementations§
Source§impl Clone for ServerStatistics
impl Clone for ServerStatistics
Source§fn clone(&self) -> ServerStatistics
fn clone(&self) -> ServerStatistics
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 ServerStatistics
impl Debug for ServerStatistics
Source§impl<'de> Deserialize<'de> for ServerStatistics
impl<'de> Deserialize<'de> for ServerStatistics
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 ServerStatistics
impl RefUnwindSafe for ServerStatistics
impl Send for ServerStatistics
impl Sync for ServerStatistics
impl Unpin for ServerStatistics
impl UnwindSafe for ServerStatistics
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