Enum web_sys::RequestDestination
source · 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,
// some variants omitted
}
Expand description
The RequestDestination
enum.
This API requires the following crate features to be activated: RequestDestination
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(obj: RequestDestination) -> JsValue
fn from(obj: RequestDestination) -> JsValue
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
source§fn eq(&self, other: &RequestDestination) -> bool
fn eq(&self, other: &RequestDestination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RequestDestination
impl Eq for RequestDestination
impl StructuralEq for RequestDestination
impl StructuralPartialEq for RequestDestination
Auto Trait Implementations§
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> 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
.