[][src]Struct web_sys::XmlHttpRequest

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

The XMLHttpRequest object

MDN Documentation

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

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,
    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,
    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,
    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<&mut [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 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 fn onreadystatechange(&self) -> Option<Function>[src]

The onreadystatechange getter

MDN Documentation

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

MDN Documentation

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

impl XmlHttpRequest[src]

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

The readyState getter

MDN Documentation

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

impl XmlHttpRequest[src]

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

The timeout getter

MDN Documentation

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

MDN Documentation

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

impl XmlHttpRequest[src]

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

The withCredentials getter

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

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]

The statusText getter

MDN Documentation

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

impl XmlHttpRequest[src]

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

The responseType getter

MDN Documentation

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

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]

The response getter

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]

The responseText getter

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]

The responseXML getter

MDN Documentation

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

impl XmlHttpRequest[src]

pub const UNSENT: u16[src]

impl XmlHttpRequest[src]

pub const OPENED: u16[src]

impl XmlHttpRequest[src]

impl XmlHttpRequest[src]

pub const LOADING: u16[src]

impl XmlHttpRequest[src]

pub const DONE: u16[src]

Methods from Deref<Target = XmlHttpRequestEventTarget>

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

The onloadstart getter

MDN Documentation

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

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

The onloadstart setter

MDN Documentation

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

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

The onprogress getter

MDN Documentation

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

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

The onprogress setter

MDN Documentation

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

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

The onabort getter

MDN Documentation

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

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

The onabort setter

MDN Documentation

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

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

The onerror getter

MDN Documentation

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

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

The onerror setter

MDN Documentation

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

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

The onload getter

MDN Documentation

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

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

The onload setter

MDN Documentation

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

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

The ontimeout getter

MDN Documentation

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

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

The ontimeout setter

MDN Documentation

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

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

The onloadend getter

MDN Documentation

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

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

The onloadend setter

MDN Documentation

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

Trait Implementations

impl Clone for XmlHttpRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl AsRef<JsValue> for XmlHttpRequest[src]

impl AsRef<XmlHttpRequest> for XmlHttpRequest[src]

impl AsRef<XmlHttpRequestEventTarget> for XmlHttpRequest[src]

impl AsRef<EventTarget> for XmlHttpRequest[src]

impl AsRef<Object> 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 Deref for XmlHttpRequest[src]

type Target = XmlHttpRequestEventTarget

The resulting type after dereferencing.

impl Debug for XmlHttpRequest[src]

impl JsCast for XmlHttpRequest[src]

fn has_type<T>(&self) -> bool where
    T: JsCast
[src]

Test whether this JS value has a type T. Read more

fn dyn_into<T>(self) -> Result<T, Self> where
    T: JsCast
[src]

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]

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]

Performs a zero-cost unchecked cast into the specified type. Read more

fn unchecked_ref<T>(&self) -> &T where
    T: JsCast
[src]

Performs a zero-cost unchecked cast into a reference to the specified type. Read more

fn is_instance_of<T>(&self) -> bool where
    T: JsCast
[src]

Test whether this JS value is an instance of the type T. Read more

fn is_type_of(val: &JsValue) -> bool[src]

Performs a dynamic check to see whether the JsValue provided is a value of this type. 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 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 WasmDescribe for XmlHttpRequest[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 OptionFromWasmAbi for XmlHttpRequest[src]

impl OptionIntoWasmAbi for XmlHttpRequest[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

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

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi