mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-27 23:23:14 -04:00
41 lines
842 B
Rust
41 lines
842 B
Rust
//! Contains traits with platform-specific methods in them.
|
|
//!
|
|
//! Contains the follow OS-specific modules:
|
|
//!
|
|
//! - `android`
|
|
//! - `ios`
|
|
//! - `macos`
|
|
//! - `unix`
|
|
//! - `windows`
|
|
//! - `web`
|
|
//!
|
|
//! And the following platform-specific module:
|
|
//!
|
|
//! - `run_return` (available on `windows`, `unix`, `macos`, and `android`)
|
|
//!
|
|
//! However only the module corresponding to the platform you're compiling to will be available.
|
|
|
|
#[cfg(android_platform)]
|
|
pub mod android;
|
|
#[cfg(ios_platform)]
|
|
pub mod ios;
|
|
#[cfg(macos_platform)]
|
|
pub mod macos;
|
|
#[cfg(wayland_platform)]
|
|
pub mod wayland;
|
|
#[cfg(wasm_platform)]
|
|
pub mod web;
|
|
#[cfg(windows_platform)]
|
|
pub mod windows;
|
|
#[cfg(x11_platform)]
|
|
pub mod x11;
|
|
|
|
#[cfg(any(
|
|
windows_platform,
|
|
macos_platform,
|
|
android_platform,
|
|
x11_platform,
|
|
wayland_platform
|
|
))]
|
|
pub mod run_return;
|