[][src]Struct tungstenite::handshake::headers::Headers

pub struct Headers { /* fields omitted */ }

HTTP request or response headers.

Methods

impl Headers[src]

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

Get first header with the given name, if any.

Important traits for HeadersIter<'name, 'headers>
pub fn find<'headers, 'name>(
    &'headers self,
    name: &'name str
) -> HeadersIter<'name, 'headers>
[src]

Iterate over all headers with the given name.

pub fn header_is(&self, name: &str, value: &str) -> bool[src]

Check if the given header has the given value.

pub fn header_is_ignore_case(&self, name: &str, value: &str) -> bool[src]

Check if the given header has the given value (case-insensitive).

pub fn iter(&self) -> Iter<(String, Box<[u8]>)>[src]

Allows to iterate over available headers.

Trait Implementations

impl<'b: 'h, 'h> FromHttparse<&'b [Header<'h>]> for Headers[src]

impl Debug for Headers[src]

Auto Trait Implementations

impl Send for Headers

impl Sync for Headers

Blanket Implementations

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

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> 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]

impl<T> Same<T> for T

type Output = T

Should always be Self