[][src]Struct web_sys::Request

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

The Request class.

MDN Documentation

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

Implementations

impl Request[src]

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

Getter for the method field of this object.

MDN Documentation

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

impl Request[src]

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

Getter for the url field of this object.

MDN Documentation

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

impl Request[src]

pub fn headers(&self) -> Headers[src]

Getter for the headers field of this object.

MDN Documentation

This API requires the following crate features to be activated: Headers, Request

impl Request[src]

pub fn destination(&self) -> RequestDestination[src]

Getter for the destination field of this object.

MDN Documentation

This API requires the following crate features to be activated: Request, RequestDestination

impl Request[src]

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

Getter for the referrer field of this object.

MDN Documentation

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

impl Request[src]

pub fn referrer_policy(&self) -> ReferrerPolicy[src]

Getter for the referrerPolicy field of this object.

MDN Documentation

This API requires the following crate features to be activated: ReferrerPolicy, Request

impl Request[src]

pub fn mode(&self) -> RequestMode[src]

Getter for the mode field of this object.

MDN Documentation

This API requires the following crate features to be activated: Request, RequestMode

impl Request[src]

pub fn credentials(&self) -> RequestCredentials[src]

Getter for the credentials field of this object.

MDN Documentation

This API requires the following crate features to be activated: Request, RequestCredentials

impl Request[src]

pub fn cache(&self) -> RequestCache[src]

Getter for the cache field of this object.

MDN Documentation

This API requires the following crate features to be activated: Request, RequestCache

impl Request[src]

pub fn redirect(&self) -> RequestRedirect[src]

Getter for the redirect field of this object.

MDN Documentation

This API requires the following crate features to be activated: Request, RequestRedirect

impl Request[src]

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

Getter for the integrity field of this object.

MDN Documentation

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

impl Request[src]

pub fn signal(&self) -> AbortSignal[src]

Getter for the signal field of this object.

MDN Documentation

This API requires the following crate features to be activated: AbortSignal, Request

impl Request[src]

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

Getter for the bodyUsed field of this object.

MDN Documentation

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

impl Request[src]

pub fn body(&self) -> Option<ReadableStream>[src]

Getter for the body field of this object.

MDN Documentation

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

impl Request[src]

pub fn new_with_request(input: &Request) -> Result<Request, JsValue>[src]

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

MDN Documentation

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

impl Request[src]

pub fn new_with_str(input: &str) -> Result<Request, JsValue>[src]

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

MDN Documentation

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

impl Request[src]

pub fn new_with_request_and_init(
    input: &Request,
    init: &RequestInit
) -> Result<Request, JsValue>
[src]

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

MDN Documentation

This API requires the following crate features to be activated: Request, RequestInit

impl Request[src]

pub fn new_with_str_and_init(
    input: &str,
    init: &RequestInit
) -> Result<Request, JsValue>
[src]

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

MDN Documentation

This API requires the following crate features to be activated: Request, RequestInit

impl Request[src]

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

The clone() method.

MDN Documentation

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

impl Request[src]

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

The arrayBuffer() method.

MDN Documentation

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

impl Request[src]

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

The blob() method.

MDN Documentation

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

impl Request[src]

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

The formData() method.

MDN Documentation

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

impl Request[src]

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

The json() method.

MDN Documentation

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

impl Request[src]

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

The text() method.

MDN Documentation

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

Trait Implementations

impl AsRef<JsValue> for Request[src]

impl AsRef<Object> for Request[src]

impl AsRef<Request> for Request[src]

impl Clone for Request[src]

impl Debug for Request[src]

impl Deref for Request[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for Request[src]

impl From<JsValue> for Request[src]

impl From<Request> for JsValue[src]

impl From<Request> for Object[src]

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

impl OptionFromWasmAbi for Request[src]

impl OptionIntoWasmAbi for Request[src]

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

impl PartialEq<Request> for Request[src]

impl RefFromWasmAbi for Request[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<Request>

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

impl StructuralPartialEq for Request[src]

impl WasmDescribe for Request[src]

Auto Trait Implementations

impl RefUnwindSafe for Request

impl !Send for Request

impl !Sync for Request

impl Unpin for Request

impl UnwindSafe for Request

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.