pub struct ProfileStat {
pub name: &'static str,
pub count: u64,
pub total_ns: u128,
}Fields§
§name: &'static str§count: u64§total_ns: u128Implementations§
Trait Implementations§
Source§impl Clone for ProfileStat
impl Clone for ProfileStat
Source§fn clone(&self) -> ProfileStat
fn clone(&self) -> ProfileStat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProfileStat
impl Debug for ProfileStat
Source§impl Default for ProfileStat
impl Default for ProfileStat
Source§fn default() -> ProfileStat
fn default() -> ProfileStat
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProfileStat
impl RefUnwindSafe for ProfileStat
impl Send for ProfileStat
impl Sync for ProfileStat
impl Unpin for ProfileStat
impl UnsafeUnpin for ProfileStat
impl UnwindSafe for ProfileStat
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