Struct awc::http::header::ETag [−][src]
pub struct ETag(pub EntityTag);
Expand description
ETag
header, defined in RFC7232
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_http::Response;
use actix_http::http::header::{ETag, EntityTag};
let mut builder = Response::Ok();
builder.set(ETag(EntityTag::new(false, "xyzzy".to_owned())));
use actix_http::Response;
use actix_http::http::header::{ETag, EntityTag};
let mut builder = Response::Ok();
builder.set(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 Header value.
Auto Trait Implementations
impl RefUnwindSafe for ETag
impl UnwindSafe for ETag
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
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