Function async_std::process::id

1.26.0 · source ·
pub fn id() -> u32
Available on unstable only.
Expand description

Returns the OS-assigned process identifier associated with this process.

§Examples

use std::process;

println!("My pid is {}", process::id());