pub struct MemoryCounts {
pub memory_search_count: usize,
pub memory_read_count: usize,
pub memory_write_count: usize,
pub team_memory_search_count: usize,
pub team_memory_read_count: usize,
pub team_memory_write_count: usize,
}Expand description
Memory counts for summary.
Fields§
§memory_search_count: usize§memory_read_count: usize§memory_write_count: usize§team_memory_search_count: usize§team_memory_read_count: usize§team_memory_write_count: usizeTrait Implementations§
Source§impl Clone for MemoryCounts
impl Clone for MemoryCounts
Source§fn clone(&self) -> MemoryCounts
fn clone(&self) -> MemoryCounts
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 moreAuto Trait Implementations§
impl Freeze for MemoryCounts
impl RefUnwindSafe for MemoryCounts
impl Send for MemoryCounts
impl Sync for MemoryCounts
impl Unpin for MemoryCounts
impl UnsafeUnpin for MemoryCounts
impl UnwindSafe for MemoryCounts
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