pub struct ProfileResult {
pub flamegraph_path: PathBuf,
pub sample_count: usize,
pub duration_ms: u64,
}Expand description
Output from a completed profiling session.
Fields§
§flamegraph_path: PathBufPath to the generated flamegraph SVG
sample_count: usizeTotal samples collected
duration_ms: u64Duration of profiling in milliseconds
Trait Implementations§
Source§impl Clone for ProfileResult
impl Clone for ProfileResult
Source§fn clone(&self) -> ProfileResult
fn clone(&self) -> ProfileResult
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 ProfileResult
impl Debug for ProfileResult
Source§impl<'de> Deserialize<'de> for ProfileResult
impl<'de> Deserialize<'de> for ProfileResult
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 ProfileResult
impl RefUnwindSafe for ProfileResult
impl Send for ProfileResult
impl Sync for ProfileResult
impl Unpin for ProfileResult
impl UnwindSafe for ProfileResult
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