[][src]Struct hyper::header::HeaderView

pub struct HeaderView<'a>(_, _);

Returned with the HeadersItems iterator.

Methods

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

pub fn is<H: Header>(&self) -> bool[src]

Check if a HeaderView is a certain Header.

pub fn name(&self) -> &'a str[src]

Get the Header name as a slice.

pub fn value<H: Header + HeaderFormat>(&self) -> Option<&'a H>[src]

Cast the value to a certain Header type.

pub fn value_string(&self) -> String[src]

Get just the header value as a String.

This will join multiple values of this header with a ,.

Warning: This may not be the format that should be used to send a Request or Response.

Trait Implementations

impl<'a> Extend<HeaderView<'a>> for Headers[src]

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

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

impl<'a> FromIterator<HeaderView<'a>> for Headers[src]

Auto Trait Implementations

impl<'a> !Send for HeaderView<'a>

impl<'a> !Sync for HeaderView<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

impl<T> Typeable for T where
    T: Any
[src]

fn get_type(&self) -> TypeId[src]

Get the TypeId of this object.