Struct hyper::header::ETag [-] [+] [src]

pub struct ETag(pub EntityTag);

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

Trait Implementations

impl Deref for ETag

type Target = EntityTag

fn deref<'a>(&'a self) -> &'a EntityTag

impl DerefMut for ETag

fn deref_mut<'a>(&'a mut self) -> &'a mut EntityTag

impl Header for ETag

fn header_name() -> &'static str

fn parse_header(raw: &[Vec<u8>]) -> Option<Self>

impl HeaderFormat for ETag

fn fmt_header(&self, f: &mut Formatter) -> Result

impl Display for ETag

fn fmt(&self, f: &mut Formatter) -> Result

Derived Implementations

impl PartialEq for ETag

fn eq(&self, __arg_0: &ETag) -> bool

fn ne(&self, __arg_0: &ETag) -> bool

impl Debug for ETag

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for ETag

fn clone(&self) -> ETag

fn clone_from(&mut self, source: &Self)