[][src]Struct etag::EntityTag

pub struct EntityTag {
    pub weak: bool,
    // some fields omitted
}

An entity tag, defined in RFC7232

The ETag HTTP response header is an identifier for a specific version of a resource. It allows caches to be more efficient, and saves bandwidth, as a web server does not need to send a full response if the content has not changed. On the other side, if the content has changed, etags are useful to help prevent simultaneous updates of a resource from overwriting each other ("mid-air collisions").

If the resource at a given URL changes, a new Etag value must be generated. Etags are therefore similar to fingerprints and might also be used for tracking purposes by some servers. A comparison of them allows to quickly determine whether two representations of a resource are the same, but they might also be set to persist indefinitely by a tracking server.

Format W/"<etag_value>"

  • 'W/' (case-sensitive) indicates that a weak validator is used. Weak validators are easy to generate but are far less useful for comparisons. Strong validators are ideal for comparisons but can be very difficult to generate efficiently. Weak Etag values of two representations of the same resources might be semantically equivalent, but not byte-for-byte identical.

  • "<etag_value>" Entity tags uniquely representing the requested resources. They are a string of ASCII characters placed between double quotes (Like "675af34563dc-tr34"). The method by which ETag values are generated is not specified. Oftentimes, a hash of the content, a hash of the last modification timestamp, or just a revision number is used. For example, MDN uses a hash of hexadecimal digits of the wiki content.

Comparison

To check if two entity tags are equivalent in an application always use the strong_eq or weak_eq methods based on the context of the Tag. Only use == to check if two tags are identical.

The example below shows the results for a set of entity-tag pairs and both the weak and strong comparison function results:

ETag 1 ETag 2 Strong Comparison Weak Comparison
W/"1" W/"1" no match match
W/"1" W/"2" no match no match
W/"1" "1" no match match
"1" "1" match match

Fields

weak: bool

Weakness indicator for the tag

Methods

impl EntityTag[src]

pub fn new(weak: bool, tag: String) -> Self[src]

Constructs a new EntityTag.

As tag characters must be in ASCII assert is included to check for it.

pub fn weak(tag: String) -> Self[src]

Constructs a new weak EntityTag.

pub fn strong(tag: String) -> Self[src]

Constructs a new strong EntityTag.

pub fn from_file_meta(metadata: &Metadata) -> Self[src]

Creates weak EntityTag from file metadata using modified time and len.

Format:

[modified-]<len>

pub fn from_hash(bytes: &[u8]) -> Self[src]

Creates strong EntityTag by hashing provided bytes.

Format:

<len>-<hash>

pub fn tag(&self) -> &str[src]

Get the tag.

pub fn set_tag(&mut self, tag: String)[src]

Set the tag.

pub fn strong_eq(&self, other: &EntityTag) -> bool[src]

For strong comparison two entity-tags are equivalent if both are not weak and their opaque-tags match character-by-character.

pub fn weak_eq(&self, other: &EntityTag) -> bool[src]

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".

pub fn strong_ne(&self, other: &EntityTag) -> bool[src]

The inverse of EntityTag.strong_eq().

pub fn weak_ne(&self, other: &EntityTag) -> bool[src]

The inverse of EntityTag.weak_eq().

Trait Implementations

impl PartialEq<EntityTag> for EntityTag[src]

impl Clone for EntityTag[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for EntityTag[src]

impl Display for EntityTag[src]

impl Debug for EntityTag[src]

impl FromStr for EntityTag[src]

type Err = ParseError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for EntityTag

impl Sync for EntityTag

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.