interprocess_docfix/os/mod.rs
1//! Platform-specific functionality for various interprocess communication primitives.
2//!
3//! This module houses two modules: [`unix`] and [`windows`]. Modules and items for foreign platforms are visible even if they're not available on your platform, so watch out. If you're using [Docs.rs], which enables the nightly-only `doc_cfg` feature by default, everything platform-specific will have a badge next to it which specifies the `cfg(...)` conditions for that item to be available.
4//!
5//! [`unix`]: mod.unix.html " "
6//! [`windows`]: mod.windows.html " "
7//! [Docs.rs]: https://Docs.rs/ " "
8
9#[cfg(any(unix, doc))]
10#[cfg_attr(feature = "doc_cfg", doc(cfg(unix)))]
11pub mod unix;
12#[cfg(any(windows, doc))]
13#[cfg_attr(feature = "doc_cfg", doc(cfg(windows)))]
14pub mod windows;