[][src]Enum stdweb::web::XhrResponseType

pub enum XhrResponseType {
    ArrayBuffer,
    Blob,
    Document,
    Json,
    Text,
}

An enum describing the type of the response to XmlHttpRequest

(JavaScript docs)

Variants

ArrayBuffer

A JavaScript ArrayBuffer containing binary data

Blob

A Blob object container the binary data

Document

An HTML Document or XML XMLDocument

Json

A JavaScript object parsed from JSON

Text

Text in a String object

Trait Implementations

impl Clone for XhrResponseType[src]

impl Copy for XhrResponseType[src]

impl Eq for XhrResponseType[src]

impl PartialEq<XhrResponseType> for XhrResponseType[src]

impl Debug for XhrResponseType[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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