Submitted PR to wrap hyper::header::Headers in Rc. This solution may or may not work for the Response API, however, because Rc doesn’t work across threads. Instead of manipulating the same object in multiple places, I might end up having to just work with one version of hyper::header::Headers, or replace Rc with Arc.