1 2 3 4 5 6 7 8
pub fn id() -> u32 { #[cfg(not(feature = "std"))] { return 0; } #[cfg(feature = "std")] std::process::id() }