tao/platform/
mod.rs

1// Copyright 2014-2021 The winit contributors
2// Copyright 2021-2023 Tauri Programme within The Commons Conservancy
3// SPDX-License-Identifier: Apache-2.0
4
5//! Contains traits with platform-specific methods in them.
6//!
7//! Contains the follow OS-specific modules:
8//!
9//!  - `android`
10//!  - `ios`
11//!  - `macos`
12//!  - `unix`
13//!  - `linux`
14//!  - `windows`
15//!
16//! And the following platform-specific module:
17//!
18//! - `run_return` (available on `windows`, `unix`, `macos`, and `android`)
19//!
20//! However only the module corresponding to the platform you're compiling to will be available.
21
22pub mod android;
23pub mod ios;
24pub mod linux;
25pub mod macos;
26pub mod run_return;
27pub mod unix;
28pub mod windows;