diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:42 +0000 |
commit | 837b550238aa671a591ccf282dddeab29cadb206 (patch) | |
tree | 914b6b8862bace72bd3245ca184d374b08d8a672 /vendor/web-sys/src/features/gen_VrPose.rs | |
parent | Adding debian version 1.70.0+dfsg2-1. (diff) | |
download | rustc-837b550238aa671a591ccf282dddeab29cadb206.tar.xz rustc-837b550238aa671a591ccf282dddeab29cadb206.zip |
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/web-sys/src/features/gen_VrPose.rs')
-rw-r--r-- | vendor/web-sys/src/features/gen_VrPose.rs | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_VrPose.rs b/vendor/web-sys/src/features/gen_VrPose.rs new file mode 100644 index 000000000..c7e03eea5 --- /dev/null +++ b/vendor/web-sys/src/features/gen_VrPose.rs @@ -0,0 +1,56 @@ +#![allow(unused_imports)] +use super::*; +use wasm_bindgen::prelude::*; +#[wasm_bindgen] +extern "C" { + # [wasm_bindgen (extends = :: js_sys :: Object , js_name = VRPose , typescript_type = "VRPose")] + #[derive(Debug, Clone, PartialEq, Eq)] + #[doc = "The `VrPose` class."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VRPose)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `VrPose`*"] + pub type VrPose; + # [wasm_bindgen (structural , catch , method , getter , js_class = "VRPose" , js_name = position)] + #[doc = "Getter for the `position` field of this object."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VRPose/position)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `VrPose`*"] + pub fn position(this: &VrPose) -> Result<Option<Vec<f32>>, JsValue>; + # [wasm_bindgen (structural , catch , method , getter , js_class = "VRPose" , js_name = linearVelocity)] + #[doc = "Getter for the `linearVelocity` field of this object."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VRPose/linearVelocity)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `VrPose`*"] + pub fn linear_velocity(this: &VrPose) -> Result<Option<Vec<f32>>, JsValue>; + # [wasm_bindgen (structural , catch , method , getter , js_class = "VRPose" , js_name = linearAcceleration)] + #[doc = "Getter for the `linearAcceleration` field of this object."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VRPose/linearAcceleration)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `VrPose`*"] + pub fn linear_acceleration(this: &VrPose) -> Result<Option<Vec<f32>>, JsValue>; + # [wasm_bindgen (structural , catch , method , getter , js_class = "VRPose" , js_name = orientation)] + #[doc = "Getter for the `orientation` field of this object."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VRPose/orientation)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `VrPose`*"] + pub fn orientation(this: &VrPose) -> Result<Option<Vec<f32>>, JsValue>; + # [wasm_bindgen (structural , catch , method , getter , js_class = "VRPose" , js_name = angularVelocity)] + #[doc = "Getter for the `angularVelocity` field of this object."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VRPose/angularVelocity)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `VrPose`*"] + pub fn angular_velocity(this: &VrPose) -> Result<Option<Vec<f32>>, JsValue>; + # [wasm_bindgen (structural , catch , method , getter , js_class = "VRPose" , js_name = angularAcceleration)] + #[doc = "Getter for the `angularAcceleration` field of this object."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VRPose/angularAcceleration)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `VrPose`*"] + pub fn angular_acceleration(this: &VrPose) -> Result<Option<Vec<f32>>, JsValue>; +} |