2015-09-25 18:04:55 +02:00
|
|
|
//! Contains traits with platform-specific methods in them.
|
|
|
|
|
//!
|
|
|
|
|
//! Contains the follow modules:
|
|
|
|
|
//!
|
2016-04-19 19:31:36 +02:00
|
|
|
//! - `android`
|
2016-01-16 15:12:21 -08:00
|
|
|
//! - `macos`
|
2015-09-25 18:04:55 +02:00
|
|
|
//! - `unix`
|
|
|
|
|
//! - `windows`
|
|
|
|
|
//!
|
2016-11-03 09:49:19 +01:00
|
|
|
//! However only the module corresponding to the platform you're compiling to will be available.
|
|
|
|
|
//!
|
2016-04-19 19:31:36 +02:00
|
|
|
pub mod android;
|
2016-01-16 15:12:21 -08:00
|
|
|
pub mod macos;
|
2015-09-25 18:04:55 +02:00
|
|
|
pub mod unix;
|
|
|
|
|
pub mod windows;
|