pub struct AppWorkers {
pub workers_active: u32,
pub workers_idle: u32,
pub workers_max: u32,
pub req_delayed: u32,
pub req_dropped: u32,
}Fields§
§workers_active: u32§workers_idle: u32§workers_max: u32§req_delayed: u32§req_dropped: u32Trait Implementations§
Source§impl Clone for AppWorkers
impl Clone for AppWorkers
Source§fn clone(&self) -> AppWorkers
fn clone(&self) -> AppWorkers
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 AppWorkers
impl Debug for AppWorkers
Source§impl<'de> Deserialize<'de> for AppWorkers
impl<'de> Deserialize<'de> for AppWorkers
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
Source§impl PartialEq for AppWorkers
impl PartialEq for AppWorkers
Source§impl Serialize for AppWorkers
impl Serialize for AppWorkers
impl Eq for AppWorkers
impl StructuralPartialEq for AppWorkers
Auto Trait Implementations§
impl Freeze for AppWorkers
impl RefUnwindSafe for AppWorkers
impl Send for AppWorkers
impl Sync for AppWorkers
impl Unpin for AppWorkers
impl UnsafeUnpin for AppWorkers
impl UnwindSafe for AppWorkers
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