pub trait AsHeaders {
    type Iter: Iterator<Item = (HeaderName, HeaderValue)>;

    fn as_headers(&self) -> Self::Iter;
}
Expand description

A trait for converting a type into request headers

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors