maxcountryman_web_sys/features/
gen_RequestDestination.rs1#![allow(unused_imports)]
2use wasm_bindgen::prelude::*;
3#[wasm_bindgen]
4#[doc = "The `RequestDestination` enum."]
5#[doc = ""]
6#[doc = "*This API requires the following crate features to be activated: `RequestDestination`*"]
7#[derive(Debug, Clone, Copy, PartialEq, Eq)]
8pub enum RequestDestination {
9 None = "",
10 Audio = "audio",
11 Audioworklet = "audioworklet",
12 Document = "document",
13 Embed = "embed",
14 Font = "font",
15 Image = "image",
16 Manifest = "manifest",
17 Object = "object",
18 Paintworklet = "paintworklet",
19 Report = "report",
20 Script = "script",
21 Sharedworker = "sharedworker",
22 Style = "style",
23 Track = "track",
24 Video = "video",
25 Worker = "worker",
26 Xslt = "xslt",
27}