pub struct ProfilerSummary {
pub counters: Vec<CounterStats>,
pub memory: MemoryStats,
}Expand description
Profiler summary
Fields§
§counters: Vec<CounterStats>Counter statistics
memory: MemoryStatsMemory statistics
Trait Implementations§
Source§impl Clone for ProfilerSummary
impl Clone for ProfilerSummary
Source§fn clone(&self) -> ProfilerSummary
fn clone(&self) -> ProfilerSummary
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 ProfilerSummary
impl Debug for ProfilerSummary
Source§impl<'de> Deserialize<'de> for ProfilerSummary
impl<'de> Deserialize<'de> for ProfilerSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProfilerSummary
impl RefUnwindSafe for ProfilerSummary
impl Send for ProfilerSummary
impl Sync for ProfilerSummary
impl Unpin for ProfilerSummary
impl UnsafeUnpin for ProfilerSummary
impl UnwindSafe for ProfilerSummary
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