Function tracing_core::stdlib::process::id
1.26.0 · source · pub fn id() -> u32
Expand description
Returns the OS-assigned process identifier associated with this process.
§Examples
Basic usage:
use std::process;
println!("My pid is {}", process::id());