web_sys/features/
gen_FilePickerOptions.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 = FilePickerOptions)]
9 #[derive(Debug, Clone, PartialEq, Eq)]
10 #[doc = "The `FilePickerOptions` dictionary."]
11 #[doc = ""]
12 #[doc = "*This API requires the following crate features to be activated: `FilePickerOptions`*"]
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 FilePickerOptions;
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: `FilePickerOptions`*"]
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: &FilePickerOptions) -> 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: `FilePickerOptions`*"]
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: &FilePickerOptions, 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: `FilePickerOptions`*"]
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: &FilePickerOptions) -> 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: `FilePickerOptions`*"]
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: &FilePickerOptions, 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: `FilePickerOptions`, `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: &FilePickerOptions) -> ::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: `FilePickerOptions`, `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: &FilePickerOptions, 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: `FilePickerOptions`, `FileSystemHandle`*"]
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: &FilePickerOptions, 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`, `FilePickerOptions`*"]
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: &FilePickerOptions) -> Option<::js_sys::Array<FilePickerAcceptType>>;
93 #[cfg(web_sys_unstable_apis)]
94 #[cfg(feature = "FilePickerAcceptType")]
95 #[doc = "Change the `types` field of this object."]
96 #[doc = ""]
97 #[doc = "*This API requires the following crate features to be activated: `FilePickerAcceptType`, `FilePickerOptions`*"]
98 #[doc = ""]
99 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
100 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
101 #[wasm_bindgen(method, setter = "types")]
102 pub fn set_types(this: &FilePickerOptions, val: &[FilePickerAcceptType]);
103}
104#[cfg(web_sys_unstable_apis)]
105impl FilePickerOptions {
106 #[doc = "Construct a new `FilePickerOptions`."]
107 #[doc = ""]
108 #[doc = "*This API requires the following crate features to be activated: `FilePickerOptions`*"]
109 #[doc = ""]
110 #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
111 #[doc = "[described in the `wasm-bindgen` guide](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/unstable-apis.html)*"]
112 pub fn new() -> Self {
113 #[allow(unused_mut)]
114 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
115 ret
116 }
117 #[cfg(web_sys_unstable_apis)]
118 #[deprecated = "Use `set_exclude_accept_all_option()` instead."]
119 pub fn exclude_accept_all_option(&mut self, val: bool) -> &mut Self {
120 self.set_exclude_accept_all_option(val);
121 self
122 }
123 #[cfg(web_sys_unstable_apis)]
124 #[deprecated = "Use `set_id()` instead."]
125 pub fn id(&mut self, val: &str) -> &mut Self {
126 self.set_id(val);
127 self
128 }
129 #[cfg(web_sys_unstable_apis)]
130 #[cfg(feature = "WellKnownDirectory")]
131 #[deprecated = "Use `set_start_in()` instead."]
132 pub fn start_in(&mut self, val: WellKnownDirectory) -> &mut Self {
133 self.set_start_in(val);
134 self
135 }
136 #[cfg(web_sys_unstable_apis)]
137 #[cfg(feature = "FilePickerAcceptType")]
138 #[deprecated = "Use `set_types()` instead."]
139 pub fn types(&mut self, val: &[FilePickerAcceptType]) -> &mut Self {
140 self.set_types(val);
141 self
142 }
143}
144#[cfg(web_sys_unstable_apis)]
145impl Default for FilePickerOptions {
146 fn default() -> Self {
147 Self::new()
148 }
149}