maxcountryman_web_sys/features/
gen_RequestCache.rs

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