summaryrefslogtreecommitdiffstats
path: root/winit/src/settings/wasm.rs
blob: 8e0f1bbce64ed7bb772a5e92bf5413f9fecfd751 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//! Platform specific settings for WebAssembly.

/// The platform specific window settings of an application.
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct PlatformSpecific {
    /// The identifier of a DOM element that will be replaced with the
    /// application.
    ///
    /// If set to `None`, the application will be appended to the HTML body.
    pub target: Option<String>,
}