web_sys/features/
gen_RequestCache.rs

1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use wasm_bindgen::prelude::*;
4#[wasm_bindgen]
5#[doc = "The `RequestCache` enum."]
6#[doc = ""]
7#[doc = "*This API requires the following crate features to be activated: `RequestCache`*"]
8#[derive(Debug, Clone, Copy, PartialEq, Eq)]
9pub enum RequestCache {
10    Default = "default",
11    NoStore = "no-store",
12    Reload = "reload",
13    NoCache = "no-cache",
14    ForceCache = "force-cache",
15    OnlyIfCached = "only-if-cached",
16}