1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = FontFace , typescript_type = "FontFace")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `FontFace` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub type FontFace;
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = family)]
    #[doc = "Getter for the `family` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/family)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn family(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = family)]
    #[doc = "Setter for the `family` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/family)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_family(this: &FontFace, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = style)]
    #[doc = "Getter for the `style` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/style)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn style(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = style)]
    #[doc = "Setter for the `style` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/style)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_style(this: &FontFace, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = weight)]
    #[doc = "Getter for the `weight` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/weight)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn weight(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = weight)]
    #[doc = "Setter for the `weight` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/weight)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_weight(this: &FontFace, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = stretch)]
    #[doc = "Getter for the `stretch` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/stretch)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn stretch(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = stretch)]
    #[doc = "Setter for the `stretch` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/stretch)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_stretch(this: &FontFace, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = unicodeRange)]
    #[doc = "Getter for the `unicodeRange` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/unicodeRange)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn unicode_range(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = unicodeRange)]
    #[doc = "Setter for the `unicodeRange` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/unicodeRange)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_unicode_range(this: &FontFace, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = variant)]
    #[doc = "Getter for the `variant` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/variant)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn variant(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = variant)]
    #[doc = "Setter for the `variant` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/variant)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_variant(this: &FontFace, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = featureSettings)]
    #[doc = "Getter for the `featureSettings` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/featureSettings)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn feature_settings(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = featureSettings)]
    #[doc = "Setter for the `featureSettings` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/featureSettings)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_feature_settings(this: &FontFace, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = variationSettings)]
    #[doc = "Getter for the `variationSettings` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/variationSettings)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn variation_settings(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = variationSettings)]
    #[doc = "Setter for the `variationSettings` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/variationSettings)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_variation_settings(this: &FontFace, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = display)]
    #[doc = "Getter for the `display` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/display)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn display(this: &FontFace) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "FontFace" , js_name = display)]
    #[doc = "Setter for the `display` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/display)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn set_display(this: &FontFace, value: &str);
    #[cfg(feature = "FontFaceLoadStatus")]
    # [wasm_bindgen (structural , method , getter , js_class = "FontFace" , js_name = status)]
    #[doc = "Getter for the `status` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/status)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`, `FontFaceLoadStatus`*"]
    pub fn status(this: &FontFace) -> FontFaceLoadStatus;
    # [wasm_bindgen (structural , catch , method , getter , js_class = "FontFace" , js_name = loaded)]
    #[doc = "Getter for the `loaded` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/loaded)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn loaded(this: &FontFace) -> Result<::js_sys::Promise, JsValue>;
    #[wasm_bindgen(catch, constructor, js_class = "FontFace")]
    #[doc = "The `new FontFace(..)` constructor, creating a new instance of `FontFace`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn new_with_str(family: &str, source: &str) -> Result<FontFace, JsValue>;
    #[wasm_bindgen(catch, constructor, js_class = "FontFace")]
    #[doc = "The `new FontFace(..)` constructor, creating a new instance of `FontFace`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn new_with_array_buffer(
        family: &str,
        source: &::js_sys::ArrayBuffer,
    ) -> Result<FontFace, JsValue>;
    #[wasm_bindgen(catch, constructor, js_class = "FontFace")]
    #[doc = "The `new FontFace(..)` constructor, creating a new instance of `FontFace`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn new_with_array_buffer_view(
        family: &str,
        source: &::js_sys::Object,
    ) -> Result<FontFace, JsValue>;
    #[wasm_bindgen(catch, constructor, js_class = "FontFace")]
    #[doc = "The `new FontFace(..)` constructor, creating a new instance of `FontFace`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn new_with_u8_array(family: &str, source: &[u8]) -> Result<FontFace, JsValue>;
    #[cfg(feature = "FontFaceDescriptors")]
    #[wasm_bindgen(catch, constructor, js_class = "FontFace")]
    #[doc = "The `new FontFace(..)` constructor, creating a new instance of `FontFace`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`, `FontFaceDescriptors`*"]
    pub fn new_with_str_and_descriptors(
        family: &str,
        source: &str,
        descriptors: &FontFaceDescriptors,
    ) -> Result<FontFace, JsValue>;
    #[cfg(feature = "FontFaceDescriptors")]
    #[wasm_bindgen(catch, constructor, js_class = "FontFace")]
    #[doc = "The `new FontFace(..)` constructor, creating a new instance of `FontFace`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`, `FontFaceDescriptors`*"]
    pub fn new_with_array_buffer_and_descriptors(
        family: &str,
        source: &::js_sys::ArrayBuffer,
        descriptors: &FontFaceDescriptors,
    ) -> Result<FontFace, JsValue>;
    #[cfg(feature = "FontFaceDescriptors")]
    #[wasm_bindgen(catch, constructor, js_class = "FontFace")]
    #[doc = "The `new FontFace(..)` constructor, creating a new instance of `FontFace`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`, `FontFaceDescriptors`*"]
    pub fn new_with_array_buffer_view_and_descriptors(
        family: &str,
        source: &::js_sys::Object,
        descriptors: &FontFaceDescriptors,
    ) -> Result<FontFace, JsValue>;
    #[cfg(feature = "FontFaceDescriptors")]
    #[wasm_bindgen(catch, constructor, js_class = "FontFace")]
    #[doc = "The `new FontFace(..)` constructor, creating a new instance of `FontFace`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/FontFace)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`, `FontFaceDescriptors`*"]
    pub fn new_with_u8_array_and_descriptors(
        family: &str,
        source: &[u8],
        descriptors: &FontFaceDescriptors,
    ) -> Result<FontFace, JsValue>;
    # [wasm_bindgen (catch , method , structural , js_class = "FontFace" , js_name = load)]
    #[doc = "The `load()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FontFace/load)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `FontFace`*"]
    pub fn load(this: &FontFace) -> Result<::js_sys::Promise, JsValue>;
}