Current section

Files

Jump to
gossamer src gossamer request_cache.gleam
Raw

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)
}