pub struct PhpPoolStats {
pub workers: u32,
pub active: u32,
pub total_requests: u64,
pub total_errors: u64,
pub avg_exec_time_us: u64,
}Expand description
Pool-level statistics.
Fields§
§workers: u32§active: u32§total_requests: u64§total_errors: u64§avg_exec_time_us: u64Trait Implementations§
Source§impl Clone for PhpPoolStats
impl Clone for PhpPoolStats
Source§fn clone(&self) -> PhpPoolStats
fn clone(&self) -> PhpPoolStats
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 PhpPoolStats
impl Debug for PhpPoolStats
Source§impl Default for PhpPoolStats
impl Default for PhpPoolStats
Source§fn default() -> PhpPoolStats
fn default() -> PhpPoolStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PhpPoolStats
impl RefUnwindSafe for PhpPoolStats
impl Send for PhpPoolStats
impl Sync for PhpPoolStats
impl Unpin for PhpPoolStats
impl UnsafeUnpin for PhpPoolStats
impl UnwindSafe for PhpPoolStats
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