pub enum CacheControlError {
MultipleMaxAge,
InvalidInteger,
InvalidUnit,
InvalidKeyword,
InvalidBytes,
}
Expand description
An error with parsing CacheControl
.
Variants§
MultipleMaxAge
Multiple max-age
directives were found.
There must only be one; else you can’t decide which to honour.
InvalidInteger
Could not parse integer in max-age or Kvarn cache control header.
InvalidUnit
The unit in the kvarn-cache-control
header is invalid.
For now, valid units are
s
for secondsm
for minutesh
for hoursd
for days
InvalidKeyword
The kvarn-cache-control
header is a keyword, but it is invalid.
For now, valid keywords are
none
for no caching- and
full
for endless caching.
InvalidBytes
Could not convert HeaderValue::to_str
.
Trait Implementations§
source§impl Clone for CacheControlError
impl Clone for CacheControlError
source§fn clone(&self) -> CacheControlError
fn clone(&self) -> CacheControlError
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 CacheControlError
impl Debug for CacheControlError
source§impl PartialEq for CacheControlError
impl PartialEq for CacheControlError
impl Eq for CacheControlError
impl StructuralPartialEq for CacheControlError
Auto Trait Implementations§
impl Freeze for CacheControlError
impl RefUnwindSafe for CacheControlError
impl Send for CacheControlError
impl Sync for CacheControlError
impl Unpin for CacheControlError
impl UnwindSafe for CacheControlError
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more