pub type Headers = HashMap<String, String>;
Expand description
The Headers
type alias represents a collection of HTTP headers in key-value pairs. It is implemented
as a HashMap<String, String>, where keys are header names, and values are header values.
Aliased Typeยง
pub struct Headers { /* private fields */ }