Function async_std::process::id 1.26.0[−][src]
pub fn id() -> u32
Returns the OS-assigned process identifier associated with this process.
Examples
Basic usage:
use std::process; println!("My pid is {}", process::id());