pub trait IterHttpHeaderFields<'a> {
    type Fields: Iterator<Item = (&'a str, &'a [u8])>;
    fn fields(&'a self) -> Self::Fields;
}
Expand description

This trait allows to iterate over the fields of a HTTP header.

Associated Types

Iterator for traversing HTTP header fields.

Required methods

Returns an iterator for traversing the HTTP header fields.

Implementations on Foreign Types

Implementors