summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_OffscreenCanvas.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/web-sys/src/features/gen_OffscreenCanvas.rs
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.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_OffscreenCanvas.rs')
-rw-r--r--vendor/web-sys/src/features/gen_OffscreenCanvas.rs106
1 files changed, 106 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_OffscreenCanvas.rs b/vendor/web-sys/src/features/gen_OffscreenCanvas.rs
new file mode 100644
index 000000000..bcf859921
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_OffscreenCanvas.rs
@@ -0,0 +1,106 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = EventTarget , extends = :: js_sys :: Object , js_name = OffscreenCanvas , typescript_type = "OffscreenCanvas")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `OffscreenCanvas` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub type OffscreenCanvas;
+ # [wasm_bindgen (structural , method , getter , js_class = "OffscreenCanvas" , js_name = width)]
+ #[doc = "Getter for the `width` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/width)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn width(this: &OffscreenCanvas) -> u32;
+ # [wasm_bindgen (structural , method , setter , js_class = "OffscreenCanvas" , js_name = width)]
+ #[doc = "Setter for the `width` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/width)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn set_width(this: &OffscreenCanvas, value: u32);
+ # [wasm_bindgen (structural , method , getter , js_class = "OffscreenCanvas" , js_name = height)]
+ #[doc = "Getter for the `height` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/height)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn height(this: &OffscreenCanvas) -> u32;
+ # [wasm_bindgen (structural , method , setter , js_class = "OffscreenCanvas" , js_name = height)]
+ #[doc = "Setter for the `height` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/height)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn set_height(this: &OffscreenCanvas, value: u32);
+ #[wasm_bindgen(catch, constructor, js_class = "OffscreenCanvas")]
+ #[doc = "The `new OffscreenCanvas(..)` constructor, creating a new instance of `OffscreenCanvas`."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/OffscreenCanvas)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn new(width: u32, height: u32) -> Result<OffscreenCanvas, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "OffscreenCanvas" , js_name = getContext)]
+ #[doc = "The `getContext()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/getContext)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn get_context(
+ this: &OffscreenCanvas,
+ context_id: &str,
+ ) -> Result<Option<::js_sys::Object>, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "OffscreenCanvas" , js_name = getContext)]
+ #[doc = "The `getContext()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/getContext)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn get_context_with_context_options(
+ this: &OffscreenCanvas,
+ context_id: &str,
+ context_options: &::wasm_bindgen::JsValue,
+ ) -> Result<Option<::js_sys::Object>, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "OffscreenCanvas" , js_name = toBlob)]
+ #[doc = "The `toBlob()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/toBlob)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn to_blob(this: &OffscreenCanvas) -> Result<::js_sys::Promise, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "OffscreenCanvas" , js_name = toBlob)]
+ #[doc = "The `toBlob()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/toBlob)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn to_blob_with_type(
+ this: &OffscreenCanvas,
+ type_: &str,
+ ) -> Result<::js_sys::Promise, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "OffscreenCanvas" , js_name = toBlob)]
+ #[doc = "The `toBlob()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/toBlob)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
+ pub fn to_blob_with_type_and_encoder_options(
+ this: &OffscreenCanvas,
+ type_: &str,
+ encoder_options: &::wasm_bindgen::JsValue,
+ ) -> Result<::js_sys::Promise, JsValue>;
+ #[cfg(feature = "ImageBitmap")]
+ # [wasm_bindgen (catch , method , structural , js_class = "OffscreenCanvas" , js_name = transferToImageBitmap)]
+ #[doc = "The `transferToImageBitmap()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/transferToImageBitmap)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ImageBitmap`, `OffscreenCanvas`*"]
+ pub fn transfer_to_image_bitmap(this: &OffscreenCanvas) -> Result<ImageBitmap, JsValue>;
+}