Struct web_sys::RequestInit 
source · #[repr(transparent)]pub struct RequestInit { /* private fields */ }Implementations§
source§impl RequestInit
 
impl RequestInit
pub fn new() -> RequestInit
pub fn body(&mut self, val: Option<&JsValue>) -> &mut Self
pub fn cache(&mut self, val: RequestCache) -> &mut Self
pub fn credentials(&mut self, val: RequestCredentials) -> &mut Self
pub fn headers(&mut self, val: &JsValue) -> &mut Self
pub fn integrity(&mut self, val: &str) -> &mut Self
pub fn method(&mut self, val: &str) -> &mut Self
pub fn mode(&mut self, val: RequestMode) -> &mut Self
pub fn observe(&mut self, val: &ObserverCallback) -> &mut Self
pub fn redirect(&mut self, val: RequestRedirect) -> &mut Self
pub fn referrer(&mut self, val: &str) -> &mut Self
pub fn referrer_policy(&mut self, val: ReferrerPolicy) -> &mut Self
pub fn signal(&mut self, val: Option<&AbortSignal>) -> &mut Self
Trait Implementations§
source§impl AsRef<JsValue> for RequestInit
 
impl AsRef<JsValue> for RequestInit
source§impl Clone for RequestInit
 
impl Clone for RequestInit
source§fn clone(&self) -> RequestInit
 
fn clone(&self) -> RequestInit
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for RequestInit
 
impl Debug for RequestInit
source§impl From<RequestInit> for JsValue
 
impl From<RequestInit> for JsValue
source§fn from(val: RequestInit) -> JsValue
 
fn from(val: RequestInit) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for RequestInit
 
impl FromWasmAbi for RequestInit
source§impl<'a> IntoWasmAbi for &'a RequestInit
 
impl<'a> IntoWasmAbi for &'a RequestInit
source§impl IntoWasmAbi for RequestInit
 
impl IntoWasmAbi for RequestInit
source§impl JsCast for RequestInit
 
impl JsCast for RequestInit
source§fn instanceof(val: &JsValue) -> bool
 
fn instanceof(val: &JsValue) -> bool
Performs a dynamic 
instanceof check to see whether the JsValue
provided is an instance of this type. Read moresource§fn unchecked_from_js(val: JsValue) -> Self
 
fn unchecked_from_js(val: JsValue) -> Self
source§fn unchecked_from_js_ref(val: &JsValue) -> &Self
 
fn unchecked_from_js_ref(val: &JsValue) -> &Self
source§fn is_instance_of<T>(&self) -> boolwhere
    T: JsCast,
 
fn is_instance_of<T>(&self) -> boolwhere
    T: JsCast,
Test whether this JS value is an instance of the type 
T. Read moresource§fn dyn_into<T>(self) -> Result<T, Self>where
    T: JsCast,
 
fn dyn_into<T>(self) -> Result<T, Self>where
    T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the
target type 
T. Read moresource§fn dyn_ref<T>(&self) -> Option<&T>where
    T: JsCast,
 
fn dyn_ref<T>(&self) -> Option<&T>where
    T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the
target type 
T. Read moresource§fn unchecked_into<T>(self) -> Twhere
    T: JsCast,
 
fn unchecked_into<T>(self) -> Twhere
    T: JsCast,
Performs a zero-cost unchecked cast into the specified type. Read more
source§impl OptionFromWasmAbi for RequestInit
 
impl OptionFromWasmAbi for RequestInit
source§impl<'a> OptionIntoWasmAbi for &'a RequestInit
 
impl<'a> OptionIntoWasmAbi for &'a RequestInit
source§impl OptionIntoWasmAbi for RequestInit
 
impl OptionIntoWasmAbi for RequestInit
source§impl RefFromWasmAbi for RequestInit
 
impl RefFromWasmAbi for RequestInit
§type Abi = <Object as RefFromWasmAbi>::Abi
 
type Abi = <Object as RefFromWasmAbi>::Abi
The wasm ABI type references to 
Self are recovered from.§type Anchor = ManuallyDrop<RequestInit>
 
type Anchor = ManuallyDrop<RequestInit>
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 moreAuto Trait Implementations§
impl RefUnwindSafe for RequestInit
impl !Send for RequestInit
impl !Sync for RequestInit
impl Unpin for RequestInit
impl UnwindSafe for RequestInit
Blanket Implementations§
source§impl<T> ReturnWasmAbi for Twhere
    T: IntoWasmAbi,
 
impl<T> ReturnWasmAbi for Twhere
    T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
 
type Abi = <T as IntoWasmAbi>::Abi
Same as 
IntoWasmAbi::Abisource§fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi
 
fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi
Same as 
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err. Read more