Struct actix_web::http::header::ETag [−][src]
pub struct ETag(pub EntityTag);
Expand description
ETag
header, defined in
RFC 7232 §2.3
The ETag
header field in a response provides the current entity-tag
for the selected representation, as determined at the conclusion of
handling the request. An entity-tag is an opaque validator for
differentiating between multiple representations of the same
resource, regardless of whether those multiple representations are
due to resource state changes over time, content negotiation
resulting in multiple representations being valid at the same time,
or both. An entity-tag consists of an opaque quoted string, possibly
prefixed by a weakness indicator.
ABNF
ETag = entity-tag
Example Values
"xyzzy"
W/"xyzzy"
""
Examples
use actix_web::HttpResponse;
use actix_web::http::header::{ETag, EntityTag};
let mut builder = HttpResponse::Ok();
builder.insert_header(
ETag(EntityTag::new(false, "xyzzy".to_owned()))
);
use actix_web::HttpResponse;
use actix_web::http::header::{ETag, EntityTag};
let mut builder = HttpResponse::Ok();
builder.insert_header(
ETag(EntityTag::new(true, "xyzzy".to_owned()))
);
Tuple Fields
0: EntityTag
Methods from Deref<Target = EntityTag>
For strong comparison two entity-tags are equivalent if both are not weak and their opaque-tags match character-by-character.
For weak comparison two entity-tags are equivalent if their opaque-tags match character-by-character, regardless of either or both being tagged as “weak”.
Trait Implementations
Returns the name of the header field
Parse a header
type Error = InvalidHeaderValue
type Error = InvalidHeaderValue
The type returned in the event of a conversion error.
Try to convert value to a HeaderValue.
Auto Trait Implementations
impl RefUnwindSafe for ETag
impl UnwindSafe for ETag
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
type Error = <T as IntoHeaderValue>::Error
pub fn try_into_header_pair(
self
) -> Result<(HeaderName, HeaderValue), <T as IntoHeaderPair>::Error>
pub fn vzip(self) -> V
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