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