http-rs / http-types

Common types for HTTP operations
https://docs.rs/http-types
Apache License 2.0
200 stars 84 forks source link

Implement `ToHeaderValues` for more string types #279

Closed yoshuawuyts closed 4 years ago

yoshuawuyts commented 4 years ago

Implements ToHeaderValues for more string types. Noticed that passing &format!("{}", "value") as the header value didn't work, but format!("{}", "value").as_str() does. This fixes that. Thanks!