Skip to main content

cart_tmp_winit/platform/
mod.rs

1//! Contains traits with platform-specific methods in them.
2//!
3//! Contains the follow OS-specific modules:
4//!
5//!  - `android`
6//!  - `ios`
7//!  - `macos`
8//!  - `unix`
9//!  - `windows`
10//!  - `web`
11//!
12//! And the following platform-specific module:
13//!
14//! - `desktop` (available on `windows`, `unix`, and `macos`)
15//!
16//! However only the module corresponding to the platform you're compiling to will be available.
17
18pub mod android;
19pub mod ios;
20pub mod macos;
21pub mod unix;
22pub mod windows;
23
24pub mod desktop;
25pub mod web;