Struct calliper::ParsedCallgrindOutput
source · pub struct ParsedCallgrindOutput { /* private fields */ }
Expand description
Callgrind execution statistics extracted from Callgrind results file (callgrind.*.out).
Implementations§
source§impl ParsedCallgrindOutput
impl ParsedCallgrindOutput
sourcepub fn ram_accesses(&self) -> Option<u64>
pub fn ram_accesses(&self) -> Option<u64>
Estimates count of RAM hits. It does not account for presence of L2 cache, so the results are just an approximation.
Trait Implementations§
source§impl Clone for ParsedCallgrindOutput
impl Clone for ParsedCallgrindOutput
source§fn clone(&self) -> ParsedCallgrindOutput
fn clone(&self) -> ParsedCallgrindOutput
Returns a copy 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 ParsedCallgrindOutput
impl Debug for ParsedCallgrindOutput
source§impl<'de> Deserialize<'de> for ParsedCallgrindOutput
impl<'de> Deserialize<'de> for ParsedCallgrindOutput
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
source§impl Display for ParsedCallgrindOutput
impl Display for ParsedCallgrindOutput
source§impl Hash for ParsedCallgrindOutput
impl Hash for ParsedCallgrindOutput
source§impl PartialEq<ParsedCallgrindOutput> for ParsedCallgrindOutput
impl PartialEq<ParsedCallgrindOutput> for ParsedCallgrindOutput
source§fn eq(&self, other: &ParsedCallgrindOutput) -> bool
fn eq(&self, other: &ParsedCallgrindOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ParsedCallgrindOutput> for ParsedCallgrindOutput
impl PartialOrd<ParsedCallgrindOutput> for ParsedCallgrindOutput
source§fn partial_cmp(&self, other: &ParsedCallgrindOutput) -> Option<Ordering>
fn partial_cmp(&self, other: &ParsedCallgrindOutput) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more