Current section
Files
Jump to
Current section
Files
src/gossamer/request_cache.gleam
/// The cache mode for a `Request`, controlling how it interacts with the
/// browser's HTTP cache.
///
/// Unrecognized values use `Other(String)`.
///
pub type RequestCache {
Default
ForceCache
NoCache
NoStore
OnlyIfCached
Reload
Other(String)
}