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