pub struct ThreadMemoryStats {
pub thread_id: u64,
pub arena_bytes: u64,
}Expand description
Memory statistics for a single thread
Fields§
§thread_id: u64§arena_bytes: u64Trait Implementations§
Source§impl Clone for ThreadMemoryStats
impl Clone for ThreadMemoryStats
Source§fn clone(&self) -> ThreadMemoryStats
fn clone(&self) -> ThreadMemoryStats
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 ThreadMemoryStats
impl Debug for ThreadMemoryStats
impl Copy for ThreadMemoryStats
Auto Trait Implementations§
impl Freeze for ThreadMemoryStats
impl RefUnwindSafe for ThreadMemoryStats
impl Send for ThreadMemoryStats
impl Sync for ThreadMemoryStats
impl Unpin for ThreadMemoryStats
impl UnwindSafe for ThreadMemoryStats
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