pub struct MeasureContent {
pub name: String,
pub is_new_timer: bool,
pub total_time: u64,
pub max_memory_usage_during_total_time: u64,
pub time_since_last_call: u64,
pub max_memory_usage_since_last_call: u64,
}Expand description
Payload for measure timers.
Fields§
§name: String§is_new_timer: bool§total_time: u64§max_memory_usage_during_total_time: u64§time_since_last_call: u64§max_memory_usage_since_last_call: u64Trait Implementations§
Source§impl Clone for MeasureContent
impl Clone for MeasureContent
Source§fn clone(&self) -> MeasureContent
fn clone(&self) -> MeasureContent
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 MeasureContent
impl Debug for MeasureContent
Auto Trait Implementations§
impl Freeze for MeasureContent
impl RefUnwindSafe for MeasureContent
impl Send for MeasureContent
impl Sync for MeasureContent
impl Unpin for MeasureContent
impl UnwindSafe for MeasureContent
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