aboutsummaryrefslogtreecommitdiffstats
path: root/src/os/mod.rs
blob: 04e82c2f01316d63b18a3b8fded4c38b86bc6555 (plain)
1
2
3
4
5
6
7
8
9
10
11
//! Contains traits with platform-specific methods in them.
//!
//! Contains the follow modules:
//!
//!  - `macos`
//!  - `unix`
//!  - `windows`
//!
pub mod macos;
pub mod unix;
pub mod windows;