pub type HeaderValues = SmallVec<[String; 1]>;Expand description
Header values using SmallVec for inline storage.
Most HTTP headers have a single value. Using SmallVec<[String; 1]> avoids heap allocation for the Vec in the common case.
Aliased Typeยง
pub struct HeaderValues { /* private fields */ }