[][src]Struct rocket_include_handlebars::EtagIfNoneMatch

pub struct EtagIfNoneMatch {
    pub etag: Option<EntityTag>,
}

The request guard used for getting if-none-match header.

Fields

etag: Option<EntityTag>

Methods

impl EtagIfNoneMatch[src]

pub fn weak_eq(&self, other_etag: &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_eq(&self, other_etag: &EntityTag) -> bool[src]

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

Trait Implementations

impl Debug for EtagIfNoneMatch[src]

impl<'a, 'r> FromRequest<'a, 'r> for &'a EtagIfNoneMatch[src]

type Error = ()

The associated error to be returned if derivation fails.

impl<'a, 'r> FromRequest<'a, 'r> for EtagIfNoneMatch[src]

type Error = ()

The associated error to be returned if derivation fails.

impl Clone for EtagIfNoneMatch[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> IntoCollection<T> for T

impl<T, I> AsResult<T, I> for T where
    I: Input,