[][src]Struct http_desync_guardian::request_analyzer::HttpHeader

pub struct HttpHeader<'a> {
    pub name: HttpToken<'a>,
    pub value: HttpToken<'a>,
    // some fields omitted
}

Fields

name: HttpToken<'a>value: HttpToken<'a>

Implementations

impl<'a> HttpHeader<'a>[src]

pub fn new(name: HttpToken<'a>, value: HttpToken<'a>) -> Self[src]

Creates a new instance of a header.

Parameters

name - header name value - header value

pub fn get_tier(&self) -> HeaderSafetyTier[src]

Trait Implementations

impl<'a> Clone for HttpHeader<'a>[src]

impl<'a> Display for HttpHeader<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for HttpHeader<'a>

impl<'a> Send for HttpHeader<'a>

impl<'a> Sync for HttpHeader<'a>

impl<'a> Unpin for HttpHeader<'a>

impl<'a> UnwindSafe for HttpHeader<'a>

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.