pub struct ThreadRegistration {
pub time: Duration,
pub program_name: String,
pub pid: usize,
}
Expand description
This message contains information for registering threads (including a program’s main thread).
Fields§
§time: Duration
A system time for when this thread registered itself as being traced with FunctionTrace.
program_name: String
The program name this thread corresponds to.
pid: usize
The process this thread belongs to.
Trait Implementations§
source§impl Debug for ThreadRegistration
impl Debug for ThreadRegistration
source§impl<'de> Deserialize<'de> for ThreadRegistration
impl<'de> Deserialize<'de> for ThreadRegistration
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