gearbox 3.0.0

Excessive tooling for Rust, boosting productivity and operations
Documentation
1
2
3
4
5
6
7
8
pub fn id() -> u32 {
    #[cfg(not(feature = "std"))]
    {
        return 0;
    }
    #[cfg(feature = "std")]
    std::process::id()
}