[][src]Struct web_sys::XmlHttpRequest

#[repr(transparent)]pub struct XmlHttpRequest { /* fields omitted */ }

The XmlHttpRequest class.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

Implementations

impl XmlHttpRequest[src]

pub fn onreadystatechange(&self) -> Option<Function>[src]

Getter for the onreadystatechange field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn set_onreadystatechange(&self, value: Option<&Function>)[src]

Setter for the onreadystatechange field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn ready_state(&self) -> u16[src]

Getter for the readyState field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn timeout(&self) -> u32[src]

Getter for the timeout field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn set_timeout(&self, value: u32)[src]

Setter for the timeout field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn with_credentials(&self) -> bool[src]

Getter for the withCredentials field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn set_with_credentials(&self, value: bool)[src]

Setter for the withCredentials field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn upload(&self) -> Result<XmlHttpRequestUpload, JsValue>[src]

Getter for the upload field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest, XmlHttpRequestUpload

impl XmlHttpRequest[src]

pub fn response_url(&self) -> String[src]

Getter for the responseURL field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn status(&self) -> Result<u16, JsValue>[src]

Getter for the status field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn status_text(&self) -> Result<String, JsValue>[src]

Getter for the statusText field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn response_type(&self) -> XmlHttpRequestResponseType[src]

Getter for the responseType field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest, XmlHttpRequestResponseType

impl XmlHttpRequest[src]

pub fn set_response_type(&self, value: XmlHttpRequestResponseType)[src]

Setter for the responseType field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest, XmlHttpRequestResponseType

impl XmlHttpRequest[src]

pub fn response(&self) -> Result<JsValue, JsValue>[src]

Getter for the response field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn response_text(&self) -> Result<Option<String>, JsValue>[src]

Getter for the responseText field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn response_xml(&self) -> Result<Option<Document>, JsValue>[src]

Getter for the responseXML field of this object.

MDN Documentation

This API requires the following crate features to be activated: Document, XmlHttpRequest

impl XmlHttpRequest[src]

pub fn new() -> Result<XmlHttpRequest, JsValue>[src]

The new XmlHttpRequest(..) constructor, creating a new instance of XmlHttpRequest.

MDN Documentation

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.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn abort(&self) -> Result<(), JsValue>[src]

The abort() method.

MDN Documentation

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.

MDN Documentation

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]

The getResponseHeader() method.

MDN Documentation

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.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn open_with_async(
    &self,
    method: &str,
    url: &str,
    r#async: bool
) -> Result<(), JsValue>
[src]

The open() method.

MDN Documentation

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,
    r#async: bool,
    user: Option<&str>
) -> Result<(), JsValue>
[src]

The open() method.

MDN Documentation

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,
    r#async: bool,
    user: Option<&str>,
    password: Option<&str>
) -> Result<(), JsValue>
[src]

The open() method.

MDN Documentation

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.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn send(&self) -> Result<(), JsValue>[src]

The send() method.

MDN Documentation

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]

The send() method.

MDN Documentation

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.

MDN Documentation

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]

The send() method.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn send_with_opt_u8_array(&self, body: Option<&[u8]>) -> Result<(), JsValue>[src]

The send() method.

MDN Documentation

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]

The send() method.

MDN Documentation

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]

The send() method.

MDN Documentation

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.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub fn send_with_opt_readable_stream(
    &self,
    body: Option<&ReadableStream>
) -> Result<(), JsValue>
[src]

The send() method.

MDN Documentation

This API requires the following crate features to be activated: ReadableStream, XmlHttpRequest

impl XmlHttpRequest[src]

pub fn set_request_header(
    &self,
    header: &str,
    value: &str
) -> Result<(), JsValue>
[src]

The setRequestHeader() method.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequest

impl XmlHttpRequest[src]

pub const UNSENT: u16[src]

The XMLHttpRequest.UNSENT const.

This API requires the following crate features to be activated: XmlHttpRequest

pub const OPENED: u16[src]

The XMLHttpRequest.OPENED const.

This API requires the following crate features to be activated: XmlHttpRequest

pub const HEADERS_RECEIVED: u16[src]

The XMLHttpRequest.HEADERS_RECEIVED const.

This API requires the following crate features to be activated: XmlHttpRequest

pub const LOADING: u16[src]

The XMLHttpRequest.LOADING const.

This API requires the following crate features to be activated: XmlHttpRequest

pub const DONE: u16[src]

The XMLHttpRequest.DONE const.

This API requires the following crate features to be activated: XmlHttpRequest

Methods from Deref<Target = XmlHttpRequestEventTarget>

pub fn onloadstart(&self) -> Option<Function>[src]

Getter for the onloadstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn set_onloadstart(&self, value: Option<&Function>)[src]

Setter for the onloadstart field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn onprogress(&self) -> Option<Function>[src]

Getter for the onprogress field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn set_onprogress(&self, value: Option<&Function>)[src]

Setter for the onprogress field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn onabort(&self) -> Option<Function>[src]

Getter for the onabort field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn set_onabort(&self, value: Option<&Function>)[src]

Setter for the onabort field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn onerror(&self) -> Option<Function>[src]

Getter for the onerror field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn set_onerror(&self, value: Option<&Function>)[src]

Setter for the onerror field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn onload(&self) -> Option<Function>[src]

Getter for the onload field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn set_onload(&self, value: Option<&Function>)[src]

Setter for the onload field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn ontimeout(&self) -> Option<Function>[src]

Getter for the ontimeout field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn set_ontimeout(&self, value: Option<&Function>)[src]

Setter for the ontimeout field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn onloadend(&self) -> Option<Function>[src]

Getter for the onloadend field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

pub fn set_onloadend(&self, value: Option<&Function>)[src]

Setter for the onloadend field of this object.

MDN Documentation

This API requires the following crate features to be activated: XmlHttpRequestEventTarget

Trait Implementations

impl AsRef<EventTarget> for XmlHttpRequest[src]

impl AsRef<JsValue> for XmlHttpRequest[src]

impl AsRef<Object> for XmlHttpRequest[src]

impl AsRef<XmlHttpRequest> for XmlHttpRequest[src]

impl AsRef<XmlHttpRequestEventTarget> for XmlHttpRequest[src]

impl Clone for XmlHttpRequest[src]

impl Debug for XmlHttpRequest[src]

impl Deref for XmlHttpRequest[src]

type Target = XmlHttpRequestEventTarget

The resulting type after dereferencing.

impl Eq for XmlHttpRequest[src]

impl From<JsValue> for XmlHttpRequest[src]

impl From<XmlHttpRequest> for JsValue[src]

impl From<XmlHttpRequest> for XmlHttpRequestEventTarget[src]

impl From<XmlHttpRequest> for EventTarget[src]

impl From<XmlHttpRequest> for Object[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

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

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

impl JsCast for XmlHttpRequest[src]

impl OptionFromWasmAbi for XmlHttpRequest[src]

impl OptionIntoWasmAbi for XmlHttpRequest[src]

impl<'a> OptionIntoWasmAbi for &'a XmlHttpRequest[src]

impl PartialEq<XmlHttpRequest> for 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

impl StructuralEq for XmlHttpRequest[src]

impl StructuralPartialEq for XmlHttpRequest[src]

impl WasmDescribe for XmlHttpRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.