pub struct ThreadProfile {
pub thread_name: String,
pub thread_id: u64,
pub spans: Vec<Span>,
}Expand description
Aggregator for multi-thread profiling results.
Fields§
§thread_name: String§thread_id: u64§spans: Vec<Span>Trait Implementations§
Source§impl Clone for ThreadProfile
impl Clone for ThreadProfile
Source§fn clone(&self) -> ThreadProfile
fn clone(&self) -> ThreadProfile
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 ThreadProfile
impl RefUnwindSafe for ThreadProfile
impl Send for ThreadProfile
impl Sync for ThreadProfile
impl Unpin for ThreadProfile
impl UnsafeUnpin for ThreadProfile
impl UnwindSafe for ThreadProfile
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