pub struct FunctionRecord {
pub name: String,
pub calls: u64,
pub total_ms: f64,
pub self_ms: f64,
}Expand description
Aggregated timing data for a single function.
Fields§
§name: String§calls: u64§total_ms: f64§self_ms: f64Trait Implementations§
Source§impl Clone for FunctionRecord
impl Clone for FunctionRecord
Source§fn clone(&self) -> FunctionRecord
fn clone(&self) -> FunctionRecord
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 FunctionRecord
impl RefUnwindSafe for FunctionRecord
impl Send for FunctionRecord
impl Sync for FunctionRecord
impl Unpin for FunctionRecord
impl UnsafeUnpin for FunctionRecord
impl UnwindSafe for FunctionRecord
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