web_sys/features/
gen_SaveFilePickerOptions.rs1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use super::*;
4use wasm_bindgen::prelude::*;
5#[cfg(web_sys_unstable_apis)]
6#[wasm_bindgen]
7extern "C" {
8 # [wasm_bindgen (extends = :: js_sys :: Object , js_name = SaveFilePickerOptions)]
9 #[derive(Debug, Clone, PartialEq, Eq)]
10 #[doc = "The `SaveFilePickerOptions` dictionary."]
11 #[doc = ""]
12 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`*"]
13 #[doc = ""]
14 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
15 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
16 pub type SaveFilePickerOptions;
17 #[cfg(web_sys_unstable_apis)]
18 #[doc = "Get the `excludeAcceptAllOption` field of this object."]
19 #[doc = ""]
20 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`*"]
21 #[doc = ""]
22 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
23 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
24 #[wasm_bindgen(method, getter = "excludeAcceptAllOption")]
25 pub fn get_exclude_accept_all_option(this: &SaveFilePickerOptions) -> Option<bool>;
26 #[cfg(web_sys_unstable_apis)]
27 #[doc = "Change the `excludeAcceptAllOption` field of this object."]
28 #[doc = ""]
29 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`*"]
30 #[doc = ""]
31 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
32 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
33 #[wasm_bindgen(method, setter = "excludeAcceptAllOption")]
34 pub fn set_exclude_accept_all_option(this: &SaveFilePickerOptions, val: bool);
35 #[cfg(web_sys_unstable_apis)]
36 #[doc = "Get the `id` field of this object."]
37 #[doc = ""]
38 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`*"]
39 #[doc = ""]
40 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
41 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
42 #[wasm_bindgen(method, getter = "id")]
43 pub fn get_id(this: &SaveFilePickerOptions) -> Option<::alloc::string::String>;
44 #[cfg(web_sys_unstable_apis)]
45 #[doc = "Change the `id` field of this object."]
46 #[doc = ""]
47 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`*"]
48 #[doc = ""]
49 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
50 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
51 #[wasm_bindgen(method, setter = "id")]
52 pub fn set_id(this: &SaveFilePickerOptions, val: &str);
53 #[cfg(web_sys_unstable_apis)]
54 #[cfg(feature = "WellKnownDirectory")]
55 #[doc = "Get the `startIn` field of this object."]
56 #[doc = ""]
57 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`, `WellKnownDirectory`*"]
58 #[doc = ""]
59 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
60 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
61 #[wasm_bindgen(method, getter = "startIn")]
62 pub fn get_start_in(this: &SaveFilePickerOptions) -> ::wasm_bindgen::JsValue;
63 #[cfg(web_sys_unstable_apis)]
64 #[cfg(feature = "WellKnownDirectory")]
65 #[doc = "Change the `startIn` field of this object."]
66 #[doc = ""]
67 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`, `WellKnownDirectory`*"]
68 #[doc = ""]
69 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
70 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
71 #[wasm_bindgen(method, setter = "startIn")]
72 pub fn set_start_in(this: &SaveFilePickerOptions, val: WellKnownDirectory);
73 #[cfg(web_sys_unstable_apis)]
74 #[cfg(feature = "FileSystemHandle")]
75 #[doc = "Change the `startIn` field of this object."]
76 #[doc = ""]
77 #[doc = "*This API requires the following crate features to be activated: `FileSystemHandle`, `SaveFilePickerOptions`*"]
78 #[doc = ""]
79 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
80 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
81 #[wasm_bindgen(method, setter = "startIn")]
82 pub fn set_start_in_file_system_handle(this: &SaveFilePickerOptions, val: &FileSystemHandle);
83 #[cfg(web_sys_unstable_apis)]
84 #[cfg(feature = "FilePickerAcceptType")]
85 #[doc = "Get the `types` field of this object."]
86 #[doc = ""]
87 #[doc = "*This API requires the following crate features to be activated: `FilePickerAcceptType`, `SaveFilePickerOptions`*"]
88 #[doc = ""]
89 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
90 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
91 #[wasm_bindgen(method, getter = "types")]
92 pub fn get_types(this: &SaveFilePickerOptions)
93 -> Option<::js_sys::Array<FilePickerAcceptType>>;
94 #[cfg(web_sys_unstable_apis)]
95 #[cfg(feature = "FilePickerAcceptType")]
96 #[doc = "Change the `types` field of this object."]
97 #[doc = ""]
98 #[doc = "*This API requires the following crate features to be activated: `FilePickerAcceptType`, `SaveFilePickerOptions`*"]
99 #[doc = ""]
100 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
101 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
102 #[wasm_bindgen(method, setter = "types")]
103 pub fn set_types(this: &SaveFilePickerOptions, val: &[FilePickerAcceptType]);
104 #[cfg(web_sys_unstable_apis)]
105 #[doc = "Get the `suggestedName` field of this object."]
106 #[doc = ""]
107 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`*"]
108 #[doc = ""]
109 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
110 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
111 #[wasm_bindgen(method, getter = "suggestedName")]
112 pub fn get_suggested_name(this: &SaveFilePickerOptions) -> Option<::alloc::string::String>;
113 #[cfg(web_sys_unstable_apis)]
114 #[doc = "Change the `suggestedName` field of this object."]
115 #[doc = ""]
116 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`*"]
117 #[doc = ""]
118 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
119 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
120 #[wasm_bindgen(method, setter = "suggestedName")]
121 pub fn set_suggested_name(this: &SaveFilePickerOptions, val: Option<&str>);
122}
123#[cfg(web_sys_unstable_apis)]
124impl SaveFilePickerOptions {
125 #[doc = "Construct a new `SaveFilePickerOptions`."]
126 #[doc = ""]
127 #[doc = "*This API requires the following crate features to be activated: `SaveFilePickerOptions`*"]
128 #[doc = ""]
129 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
130 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
131 pub fn new() -> Self {
132 #[allow(unused_mut)]
133 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
134 ret
135 }
136 #[cfg(web_sys_unstable_apis)]
137 #[deprecated = "Use `set_exclude_accept_all_option()` instead."]
138 pub fn exclude_accept_all_option(&mut self, val: bool) -> &mut Self {
139 self.set_exclude_accept_all_option(val);
140 self
141 }
142 #[cfg(web_sys_unstable_apis)]
143 #[deprecated = "Use `set_id()` instead."]
144 pub fn id(&mut self, val: &str) -> &mut Self {
145 self.set_id(val);
146 self
147 }
148 #[cfg(web_sys_unstable_apis)]
149 #[cfg(feature = "WellKnownDirectory")]
150 #[deprecated = "Use `set_start_in()` instead."]
151 pub fn start_in(&mut self, val: WellKnownDirectory) -> &mut Self {
152 self.set_start_in(val);
153 self
154 }
155 #[cfg(web_sys_unstable_apis)]
156 #[cfg(feature = "FilePickerAcceptType")]
157 #[deprecated = "Use `set_types()` instead."]
158 pub fn types(&mut self, val: &[FilePickerAcceptType]) -> &mut Self {
159 self.set_types(val);
160 self
161 }
162 #[cfg(web_sys_unstable_apis)]
163 #[deprecated = "Use `set_suggested_name()` instead."]
164 pub fn suggested_name(&mut self, val: Option<&str>) -> &mut Self {
165 self.set_suggested_name(val);
166 self
167 }
168}
169#[cfg(web_sys_unstable_apis)]
170impl Default for SaveFilePickerOptions {
171 fn default() -> Self {
172 Self::new()
173 }
174}