#[non_exhaustive]#[repr(u32)]pub enum RequestDestination {
Show 18 variants
None = 0,
Audio = 1,
Audioworklet = 2,
Document = 3,
Embed = 4,
Font = 5,
Image = 6,
Manifest = 7,
Object = 8,
Paintworklet = 9,
Report = 10,
Script = 11,
Sharedworker = 12,
Style = 13,
Track = 14,
Video = 15,
Worker = 16,
Xslt = 17,
}
Expand description
The RequestDestination
enum.
This API requires the following crate features to be activated: RequestDestination
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.
None = 0
Audio = 1
Audioworklet = 2
Document = 3
Embed = 4
Font = 5
Image = 6
Manifest = 7
Object = 8
Paintworklet = 9
Report = 10
Script = 11
Style = 13
Track = 14
Video = 15
Worker = 16
Xslt = 17
Implementations§
Source§impl RequestDestination
impl RequestDestination
pub fn from_js_value(obj: &JsValue) -> Option<RequestDestination>
Trait Implementations§
Source§impl Clone for RequestDestination
impl Clone for RequestDestination
Source§fn clone(&self) -> RequestDestination
fn clone(&self) -> RequestDestination
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 RequestDestination
impl Debug for RequestDestination
Source§impl From<RequestDestination> for JsValue
impl From<RequestDestination> for JsValue
Source§fn from(val: RequestDestination) -> Self
fn from(val: RequestDestination) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for RequestDestination
impl FromWasmAbi for RequestDestination
Source§impl IntoWasmAbi for RequestDestination
impl IntoWasmAbi for RequestDestination
Source§impl PartialEq for RequestDestination
impl PartialEq for RequestDestination
impl Copy for RequestDestination
impl Eq for RequestDestination
impl StructuralPartialEq for RequestDestination
Auto Trait Implementations§
impl Freeze for RequestDestination
impl RefUnwindSafe for RequestDestination
impl Send for RequestDestination
impl Sync for RequestDestination
impl Unpin for RequestDestination
impl UnwindSafe for RequestDestination
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
.