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
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = URL , typescript_type = "URL")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `Url` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub type Url;
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = href)]
    #[doc = "Getter for the `href` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/href)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn href(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = href)]
    #[doc = "Setter for the `href` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/href)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_href(this: &Url, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = origin)]
    #[doc = "Getter for the `origin` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/origin)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn origin(this: &Url) -> String;
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = protocol)]
    #[doc = "Getter for the `protocol` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/protocol)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn protocol(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = protocol)]
    #[doc = "Setter for the `protocol` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/protocol)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_protocol(this: &Url, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = username)]
    #[doc = "Getter for the `username` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/username)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn username(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = username)]
    #[doc = "Setter for the `username` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/username)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_username(this: &Url, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = password)]
    #[doc = "Getter for the `password` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/password)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn password(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = password)]
    #[doc = "Setter for the `password` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/password)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_password(this: &Url, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = host)]
    #[doc = "Getter for the `host` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/host)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn host(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = host)]
    #[doc = "Setter for the `host` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/host)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_host(this: &Url, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = hostname)]
    #[doc = "Getter for the `hostname` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/hostname)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn hostname(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = hostname)]
    #[doc = "Setter for the `hostname` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/hostname)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_hostname(this: &Url, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = port)]
    #[doc = "Getter for the `port` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/port)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn port(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = port)]
    #[doc = "Setter for the `port` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/port)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_port(this: &Url, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = pathname)]
    #[doc = "Getter for the `pathname` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn pathname(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = pathname)]
    #[doc = "Setter for the `pathname` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_pathname(this: &Url, value: &str);
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = search)]
    #[doc = "Getter for the `search` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/search)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn search(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = search)]
    #[doc = "Setter for the `search` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/search)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_search(this: &Url, value: &str);
    #[cfg(feature = "UrlSearchParams")]
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = searchParams)]
    #[doc = "Getter for the `searchParams` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/searchParams)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`, `UrlSearchParams`*"]
    pub fn search_params(this: &Url) -> UrlSearchParams;
    # [wasm_bindgen (structural , method , getter , js_class = "URL" , js_name = hash)]
    #[doc = "Getter for the `hash` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/hash)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn hash(this: &Url) -> String;
    # [wasm_bindgen (structural , method , setter , js_class = "URL" , js_name = hash)]
    #[doc = "Setter for the `hash` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/hash)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn set_hash(this: &Url, value: &str);
    #[wasm_bindgen(catch, constructor, js_class = "URL")]
    #[doc = "The `new Url(..)` constructor, creating a new instance of `Url`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/URL)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn new(url: &str) -> Result<Url, JsValue>;
    #[wasm_bindgen(catch, constructor, js_class = "URL")]
    #[doc = "The `new Url(..)` constructor, creating a new instance of `Url`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/URL)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn new_with_base(url: &str, base: &str) -> Result<Url, JsValue>;
    #[cfg(feature = "Blob")]
    # [wasm_bindgen (catch , static_method_of = Url , js_class = "URL" , js_name = createObjectURL)]
    #[doc = "The `createObjectURL()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Blob`, `Url`*"]
    pub fn create_object_url_with_blob(blob: &Blob) -> Result<String, JsValue>;
    #[cfg(feature = "MediaSource")]
    # [wasm_bindgen (catch , static_method_of = Url , js_class = "URL" , js_name = createObjectURL)]
    #[doc = "The `createObjectURL()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `MediaSource`, `Url`*"]
    pub fn create_object_url_with_source(source: &MediaSource) -> Result<String, JsValue>;
    # [wasm_bindgen (catch , static_method_of = Url , js_class = "URL" , js_name = revokeObjectURL)]
    #[doc = "The `revokeObjectURL()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/revokeObjectURL)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn revoke_object_url(url: &str) -> Result<(), JsValue>;
    # [wasm_bindgen (method , structural , js_class = "URL" , js_name = toJSON)]
    #[doc = "The `toJSON()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/URL/toJSON)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Url`*"]
    pub fn to_json(this: &Url) -> String;
}