summaryrefslogtreecommitdiff
path: root/vendor/web-sys/src/features/gen_NativeOsFileReadOptions.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-10 13:11:11 -0600
committermo khan <mo@mokhan.ca>2025-07-10 13:11:11 -0600
commit01959b16a21b22b5df5f16569c2a8e8f92beecef (patch)
tree32afa5d747c5466345c59ec52161a7cba3d6d755 /vendor/web-sys/src/features/gen_NativeOsFileReadOptions.rs
parentff30574117a996df332e23d1fb6f65259b316b5b (diff)
chore: vendor dependencies
Diffstat (limited to 'vendor/web-sys/src/features/gen_NativeOsFileReadOptions.rs')
-rw-r--r--vendor/web-sys/src/features/gen_NativeOsFileReadOptions.rs58
1 files changed, 58 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_NativeOsFileReadOptions.rs b/vendor/web-sys/src/features/gen_NativeOsFileReadOptions.rs
new file mode 100644
index 00000000..733fed4a
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_NativeOsFileReadOptions.rs
@@ -0,0 +1,58 @@
+#![allow(unused_imports)]
+#![allow(clippy::all)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = :: js_sys :: Object , js_name = NativeOSFileReadOptions)]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `NativeOsFileReadOptions` dictionary."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `NativeOsFileReadOptions`*"]
+ pub type NativeOsFileReadOptions;
+ #[doc = "Get the `bytes` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `NativeOsFileReadOptions`*"]
+ #[wasm_bindgen(method, getter = "bytes")]
+ pub fn get_bytes(this: &NativeOsFileReadOptions) -> Option<f64>;
+ #[doc = "Change the `bytes` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `NativeOsFileReadOptions`*"]
+ #[wasm_bindgen(method, setter = "bytes")]
+ pub fn set_bytes(this: &NativeOsFileReadOptions, val: Option<f64>);
+ #[doc = "Get the `encoding` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `NativeOsFileReadOptions`*"]
+ #[wasm_bindgen(method, getter = "encoding")]
+ pub fn get_encoding(this: &NativeOsFileReadOptions) -> Option<::alloc::string::String>;
+ #[doc = "Change the `encoding` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `NativeOsFileReadOptions`*"]
+ #[wasm_bindgen(method, setter = "encoding")]
+ pub fn set_encoding(this: &NativeOsFileReadOptions, val: Option<&str>);
+}
+impl NativeOsFileReadOptions {
+ #[doc = "Construct a new `NativeOsFileReadOptions`."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `NativeOsFileReadOptions`*"]
+ pub fn new() -> Self {
+ #[allow(unused_mut)]
+ let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
+ ret
+ }
+ #[deprecated = "Use `set_bytes()` instead."]
+ pub fn bytes(&mut self, val: Option<f64>) -> &mut Self {
+ self.set_bytes(val);
+ self
+ }
+ #[deprecated = "Use `set_encoding()` instead."]
+ pub fn encoding(&mut self, val: Option<&str>) -> &mut Self {
+ self.set_encoding(val);
+ self
+ }
+}
+impl Default for NativeOsFileReadOptions {
+ fn default() -> Self {
+ Self::new()
+ }
+}