pub struct FrameFnSummary {
pub name: &'static str,
pub calls: u32,
pub self_ns: u64,
pub alloc_count: u64,
pub alloc_bytes: u64,
pub free_count: u64,
pub free_bytes: u64,
}Expand description
Per-function summary within a single frame.
Fields§
§name: &'static str§calls: u32§self_ns: u64§alloc_count: u64§alloc_bytes: u64§free_count: u64§free_bytes: u64Trait Implementations§
Source§impl Clone for FrameFnSummary
impl Clone for FrameFnSummary
Source§fn clone(&self) -> FrameFnSummary
fn clone(&self) -> FrameFnSummary
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 FrameFnSummary
impl RefUnwindSafe for FrameFnSummary
impl Send for FrameFnSummary
impl Sync for FrameFnSummary
impl Unpin for FrameFnSummary
impl UnsafeUnpin for FrameFnSummary
impl UnwindSafe for FrameFnSummary
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