#[non_exhaustive]#[repr(u32)]pub enum HeadersGuardEnum {
None = 0,
Request = 1,
RequestNoCors = 2,
Response = 3,
Immutable = 4,
}
Expand description
The HeadersGuardEnum
enum.
This API requires the following crate features to be activated: HeadersGuardEnum
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Source§impl HeadersGuardEnum
impl HeadersGuardEnum
pub fn from_js_value(obj: &JsValue) -> Option<HeadersGuardEnum>
Trait Implementations§
Source§impl Clone for HeadersGuardEnum
impl Clone for HeadersGuardEnum
Source§fn clone(&self) -> HeadersGuardEnum
fn clone(&self) -> HeadersGuardEnum
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 HeadersGuardEnum
impl Debug for HeadersGuardEnum
Source§impl From<HeadersGuardEnum> for JsValue
impl From<HeadersGuardEnum> for JsValue
Source§fn from(val: HeadersGuardEnum) -> Self
fn from(val: HeadersGuardEnum) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for HeadersGuardEnum
impl FromWasmAbi for HeadersGuardEnum
Source§impl IntoWasmAbi for HeadersGuardEnum
impl IntoWasmAbi for HeadersGuardEnum
Source§impl OptionFromWasmAbi for HeadersGuardEnum
impl OptionFromWasmAbi for HeadersGuardEnum
Source§impl OptionIntoWasmAbi for HeadersGuardEnum
impl OptionIntoWasmAbi for HeadersGuardEnum
Source§impl PartialEq for HeadersGuardEnum
impl PartialEq for HeadersGuardEnum
impl Copy for HeadersGuardEnum
impl Eq for HeadersGuardEnum
impl StructuralPartialEq for HeadersGuardEnum
Auto Trait Implementations§
impl Freeze for HeadersGuardEnum
impl RefUnwindSafe for HeadersGuardEnum
impl Send for HeadersGuardEnum
impl Sync for HeadersGuardEnum
impl Unpin for HeadersGuardEnum
impl UnwindSafe for HeadersGuardEnum
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§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
.