pub struct TaskArenaStats {
pub total_capacity: usize,
pub active_tasks: usize,
pub worker_count: usize,
}Fields§
§total_capacity: usize§active_tasks: usize§worker_count: usizeTrait Implementations§
Source§impl Clone for TaskArenaStats
impl Clone for TaskArenaStats
Source§fn clone(&self) -> TaskArenaStats
fn clone(&self) -> TaskArenaStats
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 TaskArenaStats
impl Debug for TaskArenaStats
impl Copy for TaskArenaStats
Auto Trait Implementations§
impl Freeze for TaskArenaStats
impl RefUnwindSafe for TaskArenaStats
impl Send for TaskArenaStats
impl Sync for TaskArenaStats
impl Unpin for TaskArenaStats
impl UnwindSafe for TaskArenaStats
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