summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_IdbCursorWithValue.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_IdbCursorWithValue.rs')
-rw-r--r--vendor/web-sys/src/features/gen_IdbCursorWithValue.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_IdbCursorWithValue.rs b/vendor/web-sys/src/features/gen_IdbCursorWithValue.rs
new file mode 100644
index 000000000..2f66c5a93
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_IdbCursorWithValue.rs
@@ -0,0 +1,21 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = IdbCursor , extends = :: js_sys :: Object , js_name = IDBCursorWithValue , typescript_type = "IDBCursorWithValue")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `IdbCursorWithValue` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/IDBCursorWithValue)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `IdbCursorWithValue`*"]
+ pub type IdbCursorWithValue;
+ # [wasm_bindgen (structural , catch , method , getter , js_class = "IDBCursorWithValue" , js_name = value)]
+ #[doc = "Getter for the `value` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/IDBCursorWithValue/value)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `IdbCursorWithValue`*"]
+ pub fn value(this: &IdbCursorWithValue) -> Result<::wasm_bindgen::JsValue, JsValue>;
+}