Function aws_smithy_http::header::append_merge_header_maps
source ยท pub fn append_merge_header_maps(
lhs: HeaderMap<HeaderValue>,
rhs: HeaderMap<HeaderValue>,
) -> HeaderMap<HeaderValue>
Expand description
Given two HeaderMap
s, merge them together and return the merged HeaderMap
. If the
two HeaderMap
s share any keys, values from the right HeaderMap
be appended to the left HeaderMap
.