[−][src]Struct web_sys::XmlHttpRequest
The XmlHttpRequest class.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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,
r#async: bool
) -> Result<(), JsValue>[src]
&self,
method: &str,
url: &str,
r#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,
r#async: bool,
user: Option<&str>
) -> Result<(), JsValue>[src]
&self,
method: &str,
url: &str,
r#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,
r#async: bool,
user: Option<&str>,
password: Option<&str>
) -> Result<(), JsValue>[src]
&self,
method: &str,
url: &str,
r#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<&[u8]>) -> 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_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 send_with_opt_readable_stream(
&self,
body: Option<&ReadableStream>
) -> Result<(), JsValue>[src]
&self,
body: Option<&ReadableStream>
) -> Result<(), JsValue>
The send() method.
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]
&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 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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
This API requires the following crate features to be activated: XmlHttpRequestEventTarget
Trait Implementations
impl AsRef<EventTarget> for XmlHttpRequest[src]
fn as_ref(&self) -> &EventTarget[src]
impl AsRef<JsValue> for XmlHttpRequest[src]
impl AsRef<Object> for XmlHttpRequest[src]
impl AsRef<XmlHttpRequest> for XmlHttpRequest[src]
fn as_ref(&self) -> &XmlHttpRequest[src]
impl AsRef<XmlHttpRequestEventTarget> for XmlHttpRequest[src]
fn as_ref(&self) -> &XmlHttpRequestEventTarget[src]
impl Clone for XmlHttpRequest[src]
fn clone(&self) -> XmlHttpRequest[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for XmlHttpRequest[src]
impl Deref for XmlHttpRequest[src]
type Target = XmlHttpRequestEventTarget
The resulting type after dereferencing.
fn deref(&self) -> &XmlHttpRequestEventTarget[src]
impl Eq 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 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) -> 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) -> 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) -> Self::Abi[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 has_type<T>(&self) -> bool where
T: JsCast, [src]
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast, [src]
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast, [src]
T: JsCast,
fn unchecked_into<T>(self) -> T where
T: JsCast, [src]
T: JsCast,
fn unchecked_ref<T>(&self) -> &T where
T: JsCast, [src]
T: JsCast,
fn is_instance_of<T>(&self) -> bool where
T: JsCast, [src]
T: JsCast,
fn is_type_of(val: &JsValue) -> bool[src]
impl OptionFromWasmAbi for XmlHttpRequest[src]
impl OptionIntoWasmAbi for XmlHttpRequest[src]
impl<'a> OptionIntoWasmAbi for &'a XmlHttpRequest[src]
impl PartialEq<XmlHttpRequest> for XmlHttpRequest[src]
fn eq(&self, other: &XmlHttpRequest) -> bool[src]
fn ne(&self, other: &XmlHttpRequest) -> bool[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) -> Self::Anchor[src]
impl StructuralEq for XmlHttpRequest[src]
impl StructuralPartialEq for XmlHttpRequest[src]
impl WasmDescribe for XmlHttpRequest[src]
Auto Trait Implementations
impl RefUnwindSafe for XmlHttpRequest
impl !Send for XmlHttpRequest
impl !Sync for XmlHttpRequest
impl Unpin for XmlHttpRequest
impl UnwindSafe for XmlHttpRequest
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi, [src]
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> 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, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,