summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_DocumentFragment.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_DocumentFragment.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_DocumentFragment.rs')
-rw-r--r--vendor/web-sys/src/features/gen_DocumentFragment.rs500
1 files changed, 500 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_DocumentFragment.rs b/vendor/web-sys/src/features/gen_DocumentFragment.rs
new file mode 100644
index 000000000..fa64d510a
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_DocumentFragment.rs
@@ -0,0 +1,500 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = Node , extends = EventTarget , extends = :: js_sys :: Object , js_name = DocumentFragment , typescript_type = "DocumentFragment")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `DocumentFragment` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub type DocumentFragment;
+ #[cfg(feature = "HtmlCollection")]
+ # [wasm_bindgen (structural , method , getter , js_class = "DocumentFragment" , js_name = children)]
+ #[doc = "Getter for the `children` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/children)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`, `HtmlCollection`*"]
+ pub fn children(this: &DocumentFragment) -> HtmlCollection;
+ #[cfg(feature = "Element")]
+ # [wasm_bindgen (structural , method , getter , js_class = "DocumentFragment" , js_name = firstElementChild)]
+ #[doc = "Getter for the `firstElementChild` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/firstElementChild)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`, `Element`*"]
+ pub fn first_element_child(this: &DocumentFragment) -> Option<Element>;
+ #[cfg(feature = "Element")]
+ # [wasm_bindgen (structural , method , getter , js_class = "DocumentFragment" , js_name = lastElementChild)]
+ #[doc = "Getter for the `lastElementChild` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/lastElementChild)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`, `Element`*"]
+ pub fn last_element_child(this: &DocumentFragment) -> Option<Element>;
+ # [wasm_bindgen (structural , method , getter , js_class = "DocumentFragment" , js_name = childElementCount)]
+ #[doc = "Getter for the `childElementCount` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/childElementCount)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn child_element_count(this: &DocumentFragment) -> u32;
+ #[wasm_bindgen(catch, constructor, js_class = "DocumentFragment")]
+ #[doc = "The `new DocumentFragment(..)` constructor, creating a new instance of `DocumentFragment`."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/DocumentFragment)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn new() -> Result<DocumentFragment, JsValue>;
+ #[cfg(feature = "Element")]
+ # [wasm_bindgen (method , structural , js_class = "DocumentFragment" , js_name = getElementById)]
+ #[doc = "The `getElementById()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/getElementById)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`, `Element`*"]
+ pub fn get_element_by_id(this: &DocumentFragment, element_id: &str) -> Option<Element>;
+ #[cfg(feature = "Element")]
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = querySelector)]
+ #[doc = "The `querySelector()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelector)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`, `Element`*"]
+ pub fn query_selector(
+ this: &DocumentFragment,
+ selectors: &str,
+ ) -> Result<Option<Element>, JsValue>;
+ #[cfg(feature = "NodeList")]
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = querySelectorAll)]
+ #[doc = "The `querySelectorAll()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelectorAll)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`, `NodeList`*"]
+ pub fn query_selector_all(
+ this: &DocumentFragment,
+ selectors: &str,
+ ) -> Result<NodeList, JsValue>;
+ # [wasm_bindgen (catch , method , structural , variadic , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node(
+ this: &DocumentFragment,
+ nodes: &::js_sys::Array,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node_0(this: &DocumentFragment) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node_1(this: &DocumentFragment, nodes_1: &Node) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node_2(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node_3(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node_4(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ nodes_4: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node_5(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ nodes_4: &Node,
+ nodes_5: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node_6(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ nodes_4: &Node,
+ nodes_5: &Node,
+ nodes_6: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_node_7(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ nodes_4: &Node,
+ nodes_5: &Node,
+ nodes_6: &Node,
+ nodes_7: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , variadic , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str(this: &DocumentFragment, nodes: &::js_sys::Array)
+ -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str_0(this: &DocumentFragment) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str_1(this: &DocumentFragment, nodes_1: &str) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str_2(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str_3(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str_4(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ nodes_4: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str_5(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ nodes_4: &str,
+ nodes_5: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str_6(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ nodes_4: &str,
+ nodes_5: &str,
+ nodes_6: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = append)]
+ #[doc = "The `append()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/append)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn append_with_str_7(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ nodes_4: &str,
+ nodes_5: &str,
+ nodes_6: &str,
+ nodes_7: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , variadic , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node(
+ this: &DocumentFragment,
+ nodes: &::js_sys::Array,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node_0(this: &DocumentFragment) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node_1(this: &DocumentFragment, nodes_1: &Node) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node_2(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node_3(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node_4(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ nodes_4: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node_5(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ nodes_4: &Node,
+ nodes_5: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node_6(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ nodes_4: &Node,
+ nodes_5: &Node,
+ nodes_6: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_node_7(
+ this: &DocumentFragment,
+ nodes_1: &Node,
+ nodes_2: &Node,
+ nodes_3: &Node,
+ nodes_4: &Node,
+ nodes_5: &Node,
+ nodes_6: &Node,
+ nodes_7: &Node,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , variadic , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str(
+ this: &DocumentFragment,
+ nodes: &::js_sys::Array,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str_0(this: &DocumentFragment) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str_1(this: &DocumentFragment, nodes_1: &str) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str_2(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str_3(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str_4(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ nodes_4: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str_5(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ nodes_4: &str,
+ nodes_5: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str_6(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ nodes_4: &str,
+ nodes_5: &str,
+ nodes_6: &str,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "DocumentFragment" , js_name = prepend)]
+ #[doc = "The `prepend()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/prepend)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `DocumentFragment`*"]
+ pub fn prepend_with_str_7(
+ this: &DocumentFragment,
+ nodes_1: &str,
+ nodes_2: &str,
+ nodes_3: &str,
+ nodes_4: &str,
+ nodes_5: &str,
+ nodes_6: &str,
+ nodes_7: &str,
+ ) -> Result<(), JsValue>;
+}