blob: 5d703f84f5d9a5a9ab8969fdfe080b6ec715e14f (
plain) (
blame)
1
2
3
4
5
6
|
#![cfg(not(target_os = "windows"))]
//! Platform specific settings for not Windows.
/// The platform specific window settings of an application.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct PlatformSpecific {}
|