2025-05-05 21:14:39 +09:00
|
|
|
//! # Core types for Winit
|
|
|
|
|
//!
|
|
|
|
|
//! Platform-agnostic types and traits useful when implementing Winit backends,
|
|
|
|
|
//! or otherwise interfacing with Winit from library code.
|
|
|
|
|
//!
|
|
|
|
|
//! See the [`winit`] crate for the full user-facing API.
|
|
|
|
|
//!
|
|
|
|
|
//! [`winit`]: https://docs.rs/winit
|
|
|
|
|
|
2025-05-01 19:25:15 +09:00
|
|
|
#[macro_use]
|
|
|
|
|
pub mod as_any;
|
2025-05-01 20:16:34 +09:00
|
|
|
pub mod cursor;
|
2025-05-02 13:16:31 +09:00
|
|
|
#[macro_use]
|
|
|
|
|
pub mod error;
|
2025-05-03 20:27:48 +09:00
|
|
|
pub mod application;
|
2025-05-03 20:21:45 +09:00
|
|
|
pub mod event;
|
2025-05-02 13:28:57 +09:00
|
|
|
pub mod event_loop;
|
2025-05-01 19:59:29 +09:00
|
|
|
pub mod icon;
|
2025-05-01 19:40:53 +09:00
|
|
|
pub mod keyboard;
|
2025-05-01 19:35:04 +09:00
|
|
|
pub mod monitor;
|
2025-05-03 18:24:44 +09:00
|
|
|
pub mod window;
|