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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
#![allow(unused_imports)] use super::*; use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { # [wasm_bindgen (extends = :: js_sys :: Object , js_name = Response , typescript_type = "Response")] #[derive(Debug, Clone, PartialEq, Eq)] #[doc = "The `Response` class."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub type Response; #[cfg(feature = "ResponseType")] # [wasm_bindgen (structural , method , getter , js_class = "Response" , js_name = type)] #[doc = "Getter for the `type` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/type)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`, `ResponseType`*"] pub fn type_(this: &Response) -> ResponseType; # [wasm_bindgen (structural , method , getter , js_class = "Response" , js_name = url)] #[doc = "Getter for the `url` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/url)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn url(this: &Response) -> String; # [wasm_bindgen (structural , method , getter , js_class = "Response" , js_name = redirected)] #[doc = "Getter for the `redirected` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/redirected)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn redirected(this: &Response) -> bool; # [wasm_bindgen (structural , method , getter , js_class = "Response" , 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/Response/status)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn status(this: &Response) -> u16; # [wasm_bindgen (structural , method , getter , js_class = "Response" , js_name = ok)] #[doc = "Getter for the `ok` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/ok)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn ok(this: &Response) -> bool; # [wasm_bindgen (structural , method , getter , js_class = "Response" , js_name = statusText)] #[doc = "Getter for the `statusText` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/statusText)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn status_text(this: &Response) -> String; #[cfg(feature = "Headers")] # [wasm_bindgen (structural , method , getter , js_class = "Response" , js_name = headers)] #[doc = "Getter for the `headers` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/headers)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Headers`, `Response`*"] pub fn headers(this: &Response) -> Headers; # [wasm_bindgen (structural , method , getter , js_class = "Response" , js_name = bodyUsed)] #[doc = "Getter for the `bodyUsed` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/bodyUsed)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn body_used(this: &Response) -> bool; #[cfg(feature = "ReadableStream")] # [wasm_bindgen (structural , method , getter , js_class = "Response" , js_name = body)] #[doc = "Getter for the `body` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/body)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ReadableStream`, `Response`*"] pub fn body(this: &Response) -> Option<ReadableStream>; #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn new() -> Result<Response, JsValue>; #[cfg(feature = "Blob")] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Blob`, `Response`*"] pub fn new_with_opt_blob(body: Option<&Blob>) -> Result<Response, JsValue>; #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn new_with_opt_buffer_source(body: Option<&::js_sys::Object>) -> Result<Response, JsValue>; #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn new_with_opt_u8_array(body: Option<&mut [u8]>) -> Result<Response, JsValue>; #[cfg(feature = "FormData")] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `FormData`, `Response`*"] pub fn new_with_opt_form_data(body: Option<&FormData>) -> Result<Response, JsValue>; #[cfg(feature = "UrlSearchParams")] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`, `UrlSearchParams`*"] pub fn new_with_opt_url_search_params( body: Option<&UrlSearchParams>, ) -> Result<Response, JsValue>; #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn new_with_opt_str(body: Option<&str>) -> Result<Response, JsValue>; #[cfg(feature = "ReadableStream")] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ReadableStream`, `Response`*"] pub fn new_with_opt_readable_stream(body: Option<&ReadableStream>) -> Result<Response, JsValue>; #[cfg(all(feature = "Blob", feature = "ResponseInit",))] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Blob`, `Response`, `ResponseInit`*"] pub fn new_with_opt_blob_and_init( body: Option<&Blob>, init: &ResponseInit, ) -> Result<Response, JsValue>; #[cfg(feature = "ResponseInit")] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`, `ResponseInit`*"] pub fn new_with_opt_buffer_source_and_init( body: Option<&::js_sys::Object>, init: &ResponseInit, ) -> Result<Response, JsValue>; #[cfg(feature = "ResponseInit")] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`, `ResponseInit`*"] pub fn new_with_opt_u8_array_and_init( body: Option<&mut [u8]>, init: &ResponseInit, ) -> Result<Response, JsValue>; #[cfg(all(feature = "FormData", feature = "ResponseInit",))] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `FormData`, `Response`, `ResponseInit`*"] pub fn new_with_opt_form_data_and_init( body: Option<&FormData>, init: &ResponseInit, ) -> Result<Response, JsValue>; #[cfg(all(feature = "ResponseInit", feature = "UrlSearchParams",))] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`, `ResponseInit`, `UrlSearchParams`*"] pub fn new_with_opt_url_search_params_and_init( body: Option<&UrlSearchParams>, init: &ResponseInit, ) -> Result<Response, JsValue>; #[cfg(feature = "ResponseInit")] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`, `ResponseInit`*"] pub fn new_with_opt_str_and_init( body: Option<&str>, init: &ResponseInit, ) -> Result<Response, JsValue>; #[cfg(all(feature = "ReadableStream", feature = "ResponseInit",))] #[wasm_bindgen(catch, constructor, js_class = "Response")] #[doc = "The `new Response(..)` constructor, creating a new instance of `Response`."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ReadableStream`, `Response`, `ResponseInit`*"] pub fn new_with_opt_readable_stream_and_init( body: Option<&ReadableStream>, init: &ResponseInit, ) -> Result<Response, JsValue>; # [wasm_bindgen (catch , method , structural , js_class = "Response" , js_name = clone)] #[doc = "The `clone()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/clone)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn clone(this: &Response) -> Result<Response, JsValue>; # [wasm_bindgen (static_method_of = Response , js_class = "Response" , js_name = error)] #[doc = "The `error()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/error)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn error() -> Response; # [wasm_bindgen (catch , static_method_of = Response , js_class = "Response" , js_name = redirect)] #[doc = "The `redirect()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/redirect)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn redirect(url: &str) -> Result<Response, JsValue>; # [wasm_bindgen (catch , static_method_of = Response , js_class = "Response" , js_name = redirect)] #[doc = "The `redirect()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/redirect)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn redirect_with_status(url: &str, status: u16) -> Result<Response, JsValue>; # [wasm_bindgen (catch , method , structural , js_class = "Response" , js_name = arrayBuffer)] #[doc = "The `arrayBuffer()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/arrayBuffer)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn array_buffer(this: &Response) -> Result<::js_sys::Promise, JsValue>; # [wasm_bindgen (catch , method , structural , js_class = "Response" , js_name = blob)] #[doc = "The `blob()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/blob)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn blob(this: &Response) -> Result<::js_sys::Promise, JsValue>; # [wasm_bindgen (catch , method , structural , js_class = "Response" , js_name = formData)] #[doc = "The `formData()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/formData)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn form_data(this: &Response) -> Result<::js_sys::Promise, JsValue>; # [wasm_bindgen (catch , method , structural , js_class = "Response" , js_name = json)] #[doc = "The `json()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/json)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn json(this: &Response) -> Result<::js_sys::Promise, JsValue>; # [wasm_bindgen (catch , method , structural , js_class = "Response" , js_name = text)] #[doc = "The `text()` method."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Response/text)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `Response`*"] pub fn text(this: &Response) -> Result<::js_sys::Promise, JsValue>; }