2018-09-05 12:55:30 -07:00
|
|
|
//! Raw API bindings for Web APIs
|
|
|
|
//!
|
|
|
|
//! This is a procedurally generated crate from browser WebIDL which provides a
|
|
|
|
//! binding to all APIs that browser provide on the web.
|
|
|
|
//!
|
|
|
|
//! This crate by default contains very little when compiled as almost all of
|
|
|
|
//! its exposed APIs are gated by Cargo features. The exhaustive list of
|
|
|
|
//! features can be found in `crates/web-sys/Cargo.toml`, but the rule of thumb
|
|
|
|
//! for `web-sys` is that each type has its own cargo feature (named after the
|
|
|
|
//! type). Using an API requires enabling the features for all types used in the
|
|
|
|
//! API, and APIs should mention in the documentation what features they
|
|
|
|
//! require.
|
|
|
|
|
2018-07-19 14:57:04 -05:00
|
|
|
#![doc(html_root_url = "https://docs.rs/web-sys/0.2")]
|
2018-09-28 14:16:17 -07:00
|
|
|
#![allow(deprecated)]
|
2018-07-09 16:35:25 -07:00
|
|
|
|
2020-03-03 00:39:36 +01:00
|
|
|
mod features;
|
|
|
|
pub use features::*;
|
2018-07-09 16:35:25 -07:00
|
|
|
|
2018-11-13 14:36:33 +00:00
|
|
|
/// Getter for the `Window` object
|
|
|
|
///
|
|
|
|
/// [MDN Documentation]
|
|
|
|
///
|
|
|
|
/// *This API requires the following crate features to be activated: `Window`*
|
|
|
|
///
|
|
|
|
/// [MDN Documentation]: https://developer.mozilla.org/en-US/docs/Web/API/Window
|
2018-09-17 14:25:04 -07:00
|
|
|
#[cfg(feature = "Window")]
|
|
|
|
pub fn window() -> Option<Window> {
|
2018-09-18 15:34:40 -07:00
|
|
|
use wasm_bindgen::JsCast;
|
2018-09-17 17:39:20 -07:00
|
|
|
|
2018-09-18 15:34:40 -07:00
|
|
|
js_sys::global().dyn_into::<Window>().ok()
|
2018-09-17 14:25:04 -07:00
|
|
|
}
|