[][src]Struct web_sys::XmlHttpRequestUpload

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

The XmlHttpRequestUpload class.

MDN Documentation

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

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 XmlHttpRequestUpload[src]

impl AsRef<JsValue> for XmlHttpRequestUpload[src]

impl AsRef<Object> for XmlHttpRequestUpload[src]

impl AsRef<XmlHttpRequestEventTarget> for XmlHttpRequestUpload[src]

impl AsRef<XmlHttpRequestUpload> for XmlHttpRequestUpload[src]

impl Clone for XmlHttpRequestUpload[src]

impl Debug for XmlHttpRequestUpload[src]

impl Deref for XmlHttpRequestUpload[src]

type Target = XmlHttpRequestEventTarget

The resulting type after dereferencing.

impl Eq for XmlHttpRequestUpload[src]

impl From<JsValue> for XmlHttpRequestUpload[src]

impl From<XmlHttpRequestUpload> for JsValue[src]

impl From<XmlHttpRequestUpload> for XmlHttpRequestEventTarget[src]

impl From<XmlHttpRequestUpload> for EventTarget[src]

impl From<XmlHttpRequestUpload> for Object[src]

impl FromWasmAbi for XmlHttpRequestUpload[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 XmlHttpRequestUpload[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 XmlHttpRequestUpload[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 XmlHttpRequestUpload[src]

impl OptionFromWasmAbi for XmlHttpRequestUpload[src]

impl OptionIntoWasmAbi for XmlHttpRequestUpload[src]

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

impl PartialEq<XmlHttpRequestUpload> for XmlHttpRequestUpload[src]

impl RefFromWasmAbi for XmlHttpRequestUpload[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<XmlHttpRequestUpload>

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 XmlHttpRequestUpload[src]

impl StructuralPartialEq for XmlHttpRequestUpload[src]

impl WasmDescribe for XmlHttpRequestUpload[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.