Enum gloo_net::http::RequestMode
source · pub enum RequestMode {
SameOrigin,
NoCors,
Cors,
Navigate,
// some variants omitted
}
Available on crate feature
http
only.Expand description
The RequestMode
enum.
This API requires the following crate features to be activated: RequestMode
Variants§
Implementations§
source§impl RequestMode
impl RequestMode
pub fn from_js_value(obj: &JsValue) -> Option<RequestMode>
Trait Implementations§
source§impl Clone for RequestMode
impl Clone for RequestMode
source§fn clone(&self) -> RequestMode
fn clone(&self) -> RequestMode
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 RequestMode
impl Debug for RequestMode
source§impl From<RequestMode> for JsValue
impl From<RequestMode> for JsValue
source§fn from(obj: RequestMode) -> JsValue
fn from(obj: RequestMode) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for RequestMode
impl FromWasmAbi for RequestMode
§type Abi = <JsValue as FromWasmAbi>::Abi
type Abi = <JsValue as FromWasmAbi>::Abi
The wasm ABI type that this converts from when coming back out from the
ABI boundary.
source§unsafe fn from_abi(js: <RequestMode as FromWasmAbi>::Abi) -> RequestMode
unsafe fn from_abi(js: <RequestMode as FromWasmAbi>::Abi) -> RequestMode
source§impl IntoWasmAbi for RequestMode
impl IntoWasmAbi for RequestMode
§type Abi = <JsValue as IntoWasmAbi>::Abi
type Abi = <JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI
boundary.
source§fn into_abi(self) -> <RequestMode as IntoWasmAbi>::Abi
fn into_abi(self) -> <RequestMode as IntoWasmAbi>::Abi
Convert
self
into Self::Abi
so that it can be sent across the wasm
ABI boundary.source§impl OptionFromWasmAbi for RequestMode
impl OptionFromWasmAbi for RequestMode
source§fn is_none(abi: &<RequestMode as FromWasmAbi>::Abi) -> bool
fn is_none(abi: &<RequestMode as FromWasmAbi>::Abi) -> bool
Tests whether the argument is a “none” instance. If so it will be
deserialized as
None
, and otherwise it will be passed to
FromWasmAbi
.source§impl OptionIntoWasmAbi for RequestMode
impl OptionIntoWasmAbi for RequestMode
source§fn none() -> <RequestMode as IntoWasmAbi>::Abi
fn none() -> <RequestMode as IntoWasmAbi>::Abi
Returns an ABI instance indicating “none”, which JS will interpret as
the
None
branch of this option. Read moresource§impl PartialEq<RequestMode> for RequestMode
impl PartialEq<RequestMode> for RequestMode
source§fn eq(&self, other: &RequestMode) -> bool
fn eq(&self, other: &RequestMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RequestMode
impl Eq for RequestMode
impl StructuralEq for RequestMode
impl StructuralPartialEq for RequestMode
Auto Trait Implementations§
impl RefUnwindSafe for RequestMode
impl Send for RequestMode
impl Sync for RequestMode
impl Unpin for RequestMode
impl UnwindSafe for RequestMode
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::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.