Enum actix_web::http::header::CacheDirective [−][src]
pub enum CacheDirective {
}
Expand description
CacheControl
contains a list of these directives.
Variants
NoCache
“no-cache”
NoStore
“no-store”
NoTransform
“no-transform”
OnlyIfCached
“only-if-cached”
MaxAge(u32)
Tuple Fields
0: u32
“max-age=delta”
MaxStale(u32)
Tuple Fields
0: u32
“max-stale=delta”
MinFresh(u32)
Tuple Fields
0: u32
“min-fresh=delta”
MustRevalidate
“must-revalidate”
Public
“public”
Private
“private”
ProxyRevalidate
“proxy-revalidate”
SMaxAge(u32)
Tuple Fields
0: u32
“s-maxage=delta”
Extension(String, Option<String>)
Extension directives. Optionally include an argument.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CacheDirective
impl Send for CacheDirective
impl Sync for CacheDirective
impl Unpin for CacheDirective
impl UnwindSafe for CacheDirective
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more