Struct actix_web::http::header::IfModifiedSince [−][src]
pub struct IfModifiedSince(pub HttpDate);
Expand description
If-Modified-Since header, defined in
RFC7232
The If-Modified-Since header field makes a GET or HEAD request
method conditional on the selected representation’s modification date
being more recent than the date provided in the field-value.
Transfer of the selected representation’s data is avoided if that
data has not changed.
ABNF
If-Unmodified-Since = HTTP-date
Example values
Sat, 29 Oct 1994 19:43:31 GMT
Example
use std::time::{SystemTime, Duration}; use actix_web::HttpResponse; use actix_web::http::header::IfModifiedSince; let mut builder = HttpResponse::Ok(); let modified = SystemTime::now() - Duration::from_secs(60 * 60 * 24); builder.insert_header( IfModifiedSince(modified.into()) );
Trait Implementations
Returns the name of the header field
Parse a header
type Error = InvalidHeaderValue
type Error = InvalidHeaderValueThe type returned in the event of a conversion error.
Try to convert value to a HeaderValue.
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 IfModifiedSinceimpl Send for IfModifiedSinceimpl Sync for IfModifiedSinceimpl Unpin for IfModifiedSinceimpl UnwindSafe for IfModifiedSinceBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Error = <T as IntoHeaderValue>::Errorpub fn try_into_header_pair(
self
) -> Result<(HeaderName, HeaderValue), <T as IntoHeaderPair>::Error>type Output = T
type Output = TShould always be Self
pub fn vzip(self) -> V