mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-27 07:03:15 -04:00
14 lines
231 B
Rust
14 lines
231 B
Rust
//! Contains traits with platform-specific methods in them.
|
|
//!
|
|
//! Contains the follow modules:
|
|
//!
|
|
//! - `android`
|
|
//! - `macos`
|
|
//! - `unix`
|
|
//! - `windows`
|
|
//!
|
|
pub mod android;
|
|
pub mod macos;
|
|
pub mod unix;
|
|
pub mod windows;
|