[][src]Struct httpcodec::Header

pub struct Header<'a> { /* fields omitted */ }

HTTP header.

Methods

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

Important traits for HeaderFields<'a>
pub fn fields(&self) -> HeaderFields[src]

Returns an iterator over the fields in the header.

pub fn get_field(&self, name: &str) -> Option<&str>[src]

Returns the value of the first field that has the name name in the header.

Note that header names are compared by using str::eq_ignore_ascii_case method.

pub fn parse_field<T>(&self, name: &str) -> Result<Option<T>, T::Err> where
    T: FromStr
[src]

Returns the parsed result of the value of the first field that has the name name in the header.

Note that header names are compared by using str::eq_ignore_ascii_case method.

Trait Implementations

impl<'a> Debug for Header<'a>[src]

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

Auto Trait Implementations

impl<'a> Unpin for Header<'a>

impl<'a> Send for Header<'a>

impl<'a> Sync for Header<'a>

impl<'a> RefUnwindSafe for Header<'a>

impl<'a> UnwindSafe for Header<'a>

Blanket Implementations

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

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

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.

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

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

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