[][src]Struct websocket::header::Headers

pub struct Headers { /* fields omitted */ }

A map of header fields on requests and responses.

Methods

impl Headers
[src]

Creates a new, empty headers map.

Set a header field to the corresponding value.

The field is determined by the type of the value being set.

Access the raw value of a header.

Prefer to use the typed getters instead.

Example:

let raw_content_type = headers.get_raw("content-type");

Set the raw value of a header, bypassing any typed headers.

Note: This will completely replace any current value for this header name.

Example:

headers.set_raw("content-length", vec![b"5".to_vec()]);

Append a value to raw value of this header.

If a header already contains a value, this will add another line to it.

If a header doesnot exist for this name, a new one will be created with the value.

Example:

headers.append_raw("x-foo", b"bar".to_vec());
headers.append_raw("x-foo", b"quux".to_vec());

Remove a header set by set_raw

Get a reference to the header field's value, if it exists.

Get a mutable reference to the header field's value, if it exists.

Returns a boolean of whether a certain header is in the map.

Example:

let has_type = headers.has::<ContentType>();

Removes a header from the map, if one existed. Returns true if a header has been removed.

Important traits for HeadersItems<'a>

Returns an iterator over the header fields.

Returns the number of headers in the map.

Remove all headers from the map.

Trait Implementations

impl Debug for Headers
[src]

Formats the value using the given formatter. Read more

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

Creates a value from an iterator. Read more

impl Display for Headers
[src]

Formats the value using the given formatter. Read more

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

Extends a collection with the contents of an iterator. Read more

impl PartialEq<Headers> for Headers
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Headers
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Headers

impl !Sync for Headers

Blanket Implementations

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

Performs the conversion.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

Converts the given value to a String. Read more

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

Get the TypeId of this object.

impl<T> Erased for T
[src]