pub struct Age(Seconds);
Expand description
Age
header, defined in RFC7234
The “Age” header field conveys the sender’s estimate of the amount of time since the response was generated or successfully validated at the origin server. Age values are calculated as specified in Section 4.2.3.
§ABNF
Age = delta-seconds
The Age field-value is a non-negative integer, representing time in seconds (see Section 1.2.1).
The presence of an Age header field implies that the response was not generated or validated by the origin server for this request. However, lack of an Age header field does not imply the origin was contacted, since the response might have been received from an HTTP/1.0 cache that does not implement Age.
§Example values
3600
§Example
use headers::Age;
let len = Age::from_secs(60);
Tuple Fields§
§0: Seconds
Implementations§
Trait Implementations§
source§impl Header for Age
impl Header for Age
source§impl Ord for Age
impl Ord for Age
source§impl PartialOrd for Age
impl PartialOrd for Age
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Age
impl Eq for Age
impl StructuralPartialEq for Age
Auto Trait Implementations§
impl Freeze for Age
impl RefUnwindSafe for Age
impl Send for Age
impl Sync for Age
impl Unpin for Age
impl UnwindSafe for Age
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