summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_VideoTrack.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_VideoTrack.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_VideoTrack.rs')
-rw-r--r--vendor/web-sys/src/features/gen_VideoTrack.rs64
1 files changed, 64 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_VideoTrack.rs b/vendor/web-sys/src/features/gen_VideoTrack.rs
new file mode 100644
index 000000000..08f6e0b02
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_VideoTrack.rs
@@ -0,0 +1,64 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = :: js_sys :: Object , js_name = VideoTrack , typescript_type = "VideoTrack")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `VideoTrack` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
+ pub type VideoTrack;
+ # [wasm_bindgen (structural , method , getter , js_class = "VideoTrack" , js_name = id)]
+ #[doc = "Getter for the `id` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/id)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
+ pub fn id(this: &VideoTrack) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "VideoTrack" , js_name = kind)]
+ #[doc = "Getter for the `kind` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/kind)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
+ pub fn kind(this: &VideoTrack) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "VideoTrack" , js_name = label)]
+ #[doc = "Getter for the `label` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/label)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
+ pub fn label(this: &VideoTrack) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "VideoTrack" , js_name = language)]
+ #[doc = "Getter for the `language` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/language)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
+ pub fn language(this: &VideoTrack) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "VideoTrack" , js_name = selected)]
+ #[doc = "Getter for the `selected` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
+ pub fn selected(this: &VideoTrack) -> bool;
+ # [wasm_bindgen (structural , method , setter , js_class = "VideoTrack" , js_name = selected)]
+ #[doc = "Setter for the `selected` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `VideoTrack`*"]
+ pub fn set_selected(this: &VideoTrack, value: bool);
+ #[cfg(feature = "SourceBuffer")]
+ # [wasm_bindgen (structural , method , getter , js_class = "VideoTrack" , js_name = sourceBuffer)]
+ #[doc = "Getter for the `sourceBuffer` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/sourceBuffer)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `SourceBuffer`, `VideoTrack`*"]
+ pub fn source_buffer(this: &VideoTrack) -> Option<SourceBuffer>;
+}