pub struct ThreadDumpV1 { /* private fields */ }Implementations§
Source§impl ThreadDumpV1
impl ThreadDumpV1
Sourcepub fn threads(&self) -> &[ThreadInfoV1]
pub fn threads(&self) -> &[ThreadInfoV1]
Information about each of the threads in the thread dump. “Thread” may refer to a userland thread such as a goroutine, or an OS-level thread.
Trait Implementations§
Source§impl Clone for ThreadDumpV1
impl Clone for ThreadDumpV1
Source§fn clone(&self) -> ThreadDumpV1
fn clone(&self) -> ThreadDumpV1
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 ThreadDumpV1
impl Debug for ThreadDumpV1
Source§impl<'de> Deserialize<'de> for ThreadDumpV1
impl<'de> Deserialize<'de> for ThreadDumpV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ThreadDumpV1> for Builder<Complete>
impl From<ThreadDumpV1> for Builder<Complete>
Source§fn from(v: ThreadDumpV1) -> Self
fn from(v: ThreadDumpV1) -> Self
Converts to this type from the input type.
Source§impl Hash for ThreadDumpV1
impl Hash for ThreadDumpV1
Source§impl Ord for ThreadDumpV1
impl Ord for ThreadDumpV1
Source§fn cmp(&self, other: &ThreadDumpV1) -> Ordering
fn cmp(&self, other: &ThreadDumpV1) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ThreadDumpV1
impl PartialEq for ThreadDumpV1
Source§impl PartialOrd for ThreadDumpV1
impl PartialOrd for ThreadDumpV1
Source§impl Serialize for ThreadDumpV1
impl Serialize for ThreadDumpV1
impl Eq for ThreadDumpV1
impl StructuralPartialEq for ThreadDumpV1
Auto Trait Implementations§
impl Freeze for ThreadDumpV1
impl RefUnwindSafe for ThreadDumpV1
impl Send for ThreadDumpV1
impl Sync for ThreadDumpV1
impl Unpin for ThreadDumpV1
impl UnwindSafe for ThreadDumpV1
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