pub struct AttributedThread {
pub os_tid: u64,
pub frames: Vec<AttributedFrame>,
}Expand description
One thread’s attributed frames.
Fields§
§os_tid: u64OS thread id, carried through so the mixed-mode pairing survives.
frames: Vec<AttributedFrame>Frames, innermost first.
Trait Implementations§
Source§impl Clone for AttributedThread
impl Clone for AttributedThread
Source§fn clone(&self) -> AttributedThread
fn clone(&self) -> AttributedThread
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 AttributedThread
impl Debug for AttributedThread
impl Eq for AttributedThread
Source§impl PartialEq for AttributedThread
impl PartialEq for AttributedThread
impl StructuralPartialEq for AttributedThread
Auto Trait Implementations§
impl Freeze for AttributedThread
impl RefUnwindSafe for AttributedThread
impl Send for AttributedThread
impl Sync for AttributedThread
impl Unpin for AttributedThread
impl UnsafeUnpin for AttributedThread
impl UnwindSafe for AttributedThread
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