Enum actix_web::http::header::CacheDirective
source · 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)
“max-age=delta”
MaxStale(u32)
“max-stale=delta”
MinFresh(u32)
“min-fresh=delta”
MustRevalidate
“must-revalidate”
Public
“public”
Private
“private”
ProxyRevalidate
“proxy-revalidate”
SMaxAge(u32)
“s-maxage=delta”
Extension(String, Option<String>)
Extension directives. Optionally include an argument.
Trait Implementations§
source§impl Clone for CacheDirective
impl Clone for CacheDirective
source§fn clone(&self) -> CacheDirective
fn clone(&self) -> CacheDirective
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CacheDirective
impl Debug for CacheDirective
source§impl Display for CacheDirective
impl Display for CacheDirective
source§impl FromStr for CacheDirective
impl FromStr for CacheDirective
source§impl PartialEq for CacheDirective
impl PartialEq for CacheDirective
source§fn eq(&self, other: &CacheDirective) -> bool
fn eq(&self, other: &CacheDirective) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CacheDirective
impl StructuralPartialEq for CacheDirective
Auto Trait Implementations§
impl Freeze for CacheDirective
impl RefUnwindSafe for CacheDirective
impl Send for CacheDirective
impl Sync for CacheDirective
impl Unpin for CacheDirective
impl UnwindSafe for CacheDirective
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.