[−][src]Struct web_sys::XmlHttpRequest
The XMLHttpRequest object
This API requires the following crate features to be activated: XmlHttpRequest
Methods
impl XmlHttpRequest[src]
pub fn new() -> Result<XmlHttpRequest, JsValue>[src]
The new XMLHttpRequest(..) constructor, creating a new instance of XMLHttpRequest
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn new_with_ignored(ignored: &str) -> Result<XmlHttpRequest, JsValue>[src]
The new XMLHttpRequest(..) constructor, creating a new instance of XMLHttpRequest
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn abort(&self) -> Result<(), JsValue>[src]
The abort() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn get_all_response_headers(&self) -> Result<String, JsValue>[src]
The getAllResponseHeaders() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn get_response_header(
&self,
header: &str
) -> Result<Option<String>, JsValue>[src]
&self,
header: &str
) -> Result<Option<String>, JsValue>
The getResponseHeader() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn open(&self, method: &str, url: &str) -> Result<(), JsValue>[src]
The open() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn open_with_async(
&self,
method: &str,
url: &str,
async: bool
) -> Result<(), JsValue>[src]
&self,
method: &str,
url: &str,
async: bool
) -> Result<(), JsValue>
The open() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn open_with_async_and_user(
&self,
method: &str,
url: &str,
async: bool,
user: Option<&str>
) -> Result<(), JsValue>[src]
&self,
method: &str,
url: &str,
async: bool,
user: Option<&str>
) -> Result<(), JsValue>
The open() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn open_with_async_and_user_and_password(
&self,
method: &str,
url: &str,
async: bool,
user: Option<&str>,
password: Option<&str>
) -> Result<(), JsValue>[src]
&self,
method: &str,
url: &str,
async: bool,
user: Option<&str>,
password: Option<&str>
) -> Result<(), JsValue>
The open() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn override_mime_type(&self, mime: &str) -> Result<(), JsValue>[src]
The overrideMimeType() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn send(&self) -> Result<(), JsValue>[src]
The send() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn send_with_opt_document(
&self,
body: Option<&Document>
) -> Result<(), JsValue>[src]
&self,
body: Option<&Document>
) -> Result<(), JsValue>
The send() method
This API requires the following crate features to be activated: Document, XmlHttpRequest
impl XmlHttpRequest[src]
pub fn send_with_opt_blob(&self, body: Option<&Blob>) -> Result<(), JsValue>[src]
The send() method
This API requires the following crate features to be activated: Blob, XmlHttpRequest
impl XmlHttpRequest[src]
pub fn send_with_opt_buffer_source(
&self,
body: Option<&Object>
) -> Result<(), JsValue>[src]
&self,
body: Option<&Object>
) -> Result<(), JsValue>
The send() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn send_with_opt_u8_array(
&self,
body: Option<&mut [u8]>
) -> Result<(), JsValue>[src]
&self,
body: Option<&mut [u8]>
) -> Result<(), JsValue>
The send() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn send_with_opt_form_data(
&self,
body: Option<&FormData>
) -> Result<(), JsValue>[src]
&self,
body: Option<&FormData>
) -> Result<(), JsValue>
The send() method
This API requires the following crate features to be activated: FormData, XmlHttpRequest
impl XmlHttpRequest[src]
pub fn send_with_opt_url_search_params(
&self,
body: Option<&UrlSearchParams>
) -> Result<(), JsValue>[src]
&self,
body: Option<&UrlSearchParams>
) -> Result<(), JsValue>
The send() method
This API requires the following crate features to be activated: UrlSearchParams, XmlHttpRequest
impl XmlHttpRequest[src]
pub fn send_with_opt_str(&self, body: Option<&str>) -> Result<(), JsValue>[src]
The send() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn set_request_header(
&self,
header: &str,
value: &str
) -> Result<(), JsValue>[src]
&self,
header: &str,
value: &str
) -> Result<(), JsValue>
The setRequestHeader() method
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn onreadystatechange(&self) -> Option<Function>[src]
The onreadystatechange getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn set_onreadystatechange(&self, onreadystatechange: Option<&Function>)[src]
The onreadystatechange setter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn ready_state(&self) -> u16[src]
The readyState getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn timeout(&self) -> u32[src]
The timeout getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn set_timeout(&self, timeout: u32)[src]
The timeout setter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn with_credentials(&self) -> bool[src]
The withCredentials getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn set_with_credentials(&self, with_credentials: bool)[src]
The withCredentials setter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn upload(&self) -> Result<XmlHttpRequestUpload, JsValue>[src]
The upload getter
This API requires the following crate features to be activated: XmlHttpRequest, XmlHttpRequestUpload
impl XmlHttpRequest[src]
pub fn response_url(&self) -> String[src]
The responseURL getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn status(&self) -> Result<u16, JsValue>[src]
The status getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn status_text(&self) -> Result<String, JsValue>[src]
The statusText getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn response_type(&self) -> XmlHttpRequestResponseType[src]
The responseType getter
This API requires the following crate features to be activated: XmlHttpRequest, XmlHttpRequestResponseType
impl XmlHttpRequest[src]
pub fn set_response_type(&self, response_type: XmlHttpRequestResponseType)[src]
The responseType setter
This API requires the following crate features to be activated: XmlHttpRequest, XmlHttpRequestResponseType
impl XmlHttpRequest[src]
pub fn response(&self) -> Result<JsValue, JsValue>[src]
The response getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn response_text(&self) -> Result<Option<String>, JsValue>[src]
The responseText getter
This API requires the following crate features to be activated: XmlHttpRequest
impl XmlHttpRequest[src]
pub fn response_xml(&self) -> Result<Option<Document>, JsValue>[src]
The responseXML getter
This API requires the following crate features to be activated: Document, XmlHttpRequest
impl XmlHttpRequest[src]
impl XmlHttpRequest[src]
impl XmlHttpRequest[src]
pub const HEADERS_RECEIVED: u16[src]
impl XmlHttpRequest[src]
impl XmlHttpRequest[src]
Methods from Deref<Target = XmlHttpRequestEventTarget>
pub fn onloadstart(&self) -> Option<Function>[src]
The onloadstart getter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn set_onloadstart(&self, onloadstart: Option<&Function>)[src]
The onloadstart setter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn onprogress(&self) -> Option<Function>[src]
The onprogress getter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn set_onprogress(&self, onprogress: Option<&Function>)[src]
The onprogress setter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn onabort(&self) -> Option<Function>[src]
The onabort getter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn set_onabort(&self, onabort: Option<&Function>)[src]
The onabort setter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn onerror(&self) -> Option<Function>[src]
The onerror getter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn set_onerror(&self, onerror: Option<&Function>)[src]
The onerror setter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn onload(&self) -> Option<Function>[src]
The onload getter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn set_onload(&self, onload: Option<&Function>)[src]
The onload setter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn ontimeout(&self) -> Option<Function>[src]
The ontimeout getter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn set_ontimeout(&self, ontimeout: Option<&Function>)[src]
The ontimeout setter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn onloadend(&self) -> Option<Function>[src]
The onloadend getter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
pub fn set_onloadend(&self, onloadend: Option<&Function>)[src]
The onloadend setter
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
Trait Implementations
impl AsRef<JsValue> for XmlHttpRequest[src]
impl AsRef<XmlHttpRequestEventTarget> for XmlHttpRequest[src]
fn as_ref(&self) -> &XmlHttpRequestEventTarget[src]
impl AsRef<EventTarget> for XmlHttpRequest[src]
fn as_ref(&self) -> &EventTarget[src]
impl AsRef<Object> for XmlHttpRequest[src]
impl From<JsValue> for XmlHttpRequest[src]
fn from(obj: JsValue) -> XmlHttpRequest[src]
impl From<XmlHttpRequest> for JsValue[src]
fn from(obj: XmlHttpRequest) -> JsValue[src]
impl From<XmlHttpRequest> for XmlHttpRequestEventTarget[src]
fn from(obj: XmlHttpRequest) -> XmlHttpRequestEventTarget[src]
impl From<XmlHttpRequest> for EventTarget[src]
fn from(obj: XmlHttpRequest) -> EventTarget[src]
impl From<XmlHttpRequest> for Object[src]
fn from(obj: XmlHttpRequest) -> Object[src]
impl Clone for XmlHttpRequest[src]
fn clone(&self) -> XmlHttpRequest[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for XmlHttpRequest[src]
impl Deref for XmlHttpRequest[src]
type Target = XmlHttpRequestEventTarget
The resulting type after dereferencing.
fn deref(&self) -> &XmlHttpRequestEventTarget[src]
impl FromWasmAbi for XmlHttpRequest[src]
type Abi = <JsValue as FromWasmAbi>::Abi
The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more
unsafe fn from_abi(js: Self::Abi, extra: &mut dyn Stack) -> Self[src]
impl IntoWasmAbi for XmlHttpRequest[src]
type Abi = <JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self, extra: &mut dyn Stack) -> Self::Abi[src]
impl<'a> IntoWasmAbi for &'a XmlHttpRequest[src]
type Abi = <&'a JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self, extra: &mut dyn Stack) -> Self::Abi[src]
impl WasmDescribe for XmlHttpRequest[src]
impl OptionFromWasmAbi for XmlHttpRequest[src]
impl OptionIntoWasmAbi for XmlHttpRequest[src]
impl<'a> OptionIntoWasmAbi for &'a XmlHttpRequest[src]
impl RefFromWasmAbi for XmlHttpRequest[src]
type Abi = <JsValue as RefFromWasmAbi>::Abi
The wasm ABI type references to Self are recovered from.
type Anchor = ManuallyDrop<XmlHttpRequest>
The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more
unsafe fn ref_from_abi(js: Self::Abi, extra: &mut dyn Stack) -> Self::Anchor[src]
impl JsCast for XmlHttpRequest[src]
fn instanceof(val: &JsValue) -> bool[src]
fn unchecked_from_js(val: JsValue) -> Self[src]
fn unchecked_from_js_ref(val: &JsValue) -> &Self[src]
fn is_instance_of<T>(&self) -> bool where
T: JsCast, [src]
T: JsCast,
Test whether this JS value is an instance of the type T. Read more
fn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast, [src]
T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
fn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast, [src]
T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
fn unchecked_into<T>(self) -> T where
T: JsCast, [src]
T: JsCast,
Performs a zero-cost unchecked cast into the specified type. Read more
fn unchecked_ref<T>(&self) -> &T where
T: JsCast, [src]
T: JsCast,
Performs a zero-cost unchecked cast into a reference to the specified type. Read more
Auto Trait Implementations
impl !Send for XmlHttpRequest
impl !Sync for XmlHttpRequest
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi, [src]
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi