summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_HidInputReportEventInit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_HidInputReportEventInit.rs')
-rw-r--r--vendor/web-sys/src/features/gen_HidInputReportEventInit.rs154
1 files changed, 154 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_HidInputReportEventInit.rs b/vendor/web-sys/src/features/gen_HidInputReportEventInit.rs
new file mode 100644
index 000000000..7b0c9b54d
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_HidInputReportEventInit.rs
@@ -0,0 +1,154 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[cfg(web_sys_unstable_apis)]
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = :: js_sys :: Object , js_name = HIDInputReportEventInit)]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `HidInputReportEventInit` dictionary."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HidInputReportEventInit`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub type HidInputReportEventInit;
+}
+#[cfg(web_sys_unstable_apis)]
+impl HidInputReportEventInit {
+ #[cfg(feature = "HidDevice")]
+ #[doc = "Construct a new `HidInputReportEventInit`."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HidDevice`, `HidInputReportEventInit`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn new(data: &::js_sys::DataView, device: &HidDevice, report_id: u8) -> Self {
+ #[allow(unused_mut)]
+ let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
+ ret.data(data);
+ ret.device(device);
+ ret.report_id(report_id);
+ ret
+ }
+ #[cfg(web_sys_unstable_apis)]
+ #[doc = "Change the `bubbles` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HidInputReportEventInit`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn bubbles(&mut self, val: bool) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(
+ self.as_ref(),
+ &JsValue::from("bubbles"),
+ &JsValue::from(val),
+ );
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[cfg(web_sys_unstable_apis)]
+ #[doc = "Change the `cancelable` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HidInputReportEventInit`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn cancelable(&mut self, val: bool) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(
+ self.as_ref(),
+ &JsValue::from("cancelable"),
+ &JsValue::from(val),
+ );
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[cfg(web_sys_unstable_apis)]
+ #[doc = "Change the `composed` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HidInputReportEventInit`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn composed(&mut self, val: bool) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(
+ self.as_ref(),
+ &JsValue::from("composed"),
+ &JsValue::from(val),
+ );
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[cfg(web_sys_unstable_apis)]
+ #[doc = "Change the `data` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HidInputReportEventInit`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn data(&mut self, val: &::js_sys::DataView) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("data"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[cfg(web_sys_unstable_apis)]
+ #[cfg(feature = "HidDevice")]
+ #[doc = "Change the `device` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HidDevice`, `HidInputReportEventInit`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn device(&mut self, val: &HidDevice) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r =
+ ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("device"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[cfg(web_sys_unstable_apis)]
+ #[doc = "Change the `reportId` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `HidInputReportEventInit`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn report_id(&mut self, val: u8) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(
+ self.as_ref(),
+ &JsValue::from("reportId"),
+ &JsValue::from(val),
+ );
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+}