pub struct TaskQueueStats {
pub threads_count: usize,
pub threads_max: usize,
pub threads_min: usize,
pub tasks_count: usize,
}Fields§
§threads_count: usize§threads_max: usize§threads_min: usize§tasks_count: usizeImplementations§
Trait Implementations§
Source§impl Clone for TaskQueueStats
impl Clone for TaskQueueStats
Source§fn clone(&self) -> TaskQueueStats
fn clone(&self) -> TaskQueueStats
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 moreimpl Copy for TaskQueueStats
Auto Trait Implementations§
impl Freeze for TaskQueueStats
impl RefUnwindSafe for TaskQueueStats
impl Send for TaskQueueStats
impl Sync for TaskQueueStats
impl Unpin for TaskQueueStats
impl UnwindSafe for TaskQueueStats
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