//! [`IntoHeaderValue`] trait and implementations. use std::convert::TryFrom as _; use bytes::Bytes; use http::{header::InvalidHeaderValue, Error as HttpError, HeaderValue}; use mime::Mime; /// An interface for types that can be converted into a [`HeaderValue`]. pub trait IntoHeaderValue: Sized { /// The type returned in the event of a conversion error. type Error: Into; /// Try to convert value to a HeaderValue. fn try_into_value(self) -> Result; } impl IntoHeaderValue for HeaderValue { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { Ok(self) } } impl IntoHeaderValue for &HeaderValue { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { Ok(self.clone()) } } impl IntoHeaderValue for &str { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { self.parse() } } impl IntoHeaderValue for &[u8] { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::from_bytes(self) } } impl IntoHeaderValue for Bytes { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::from_maybe_shared(self) } } impl IntoHeaderValue for Vec { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::try_from(self) } } impl IntoHeaderValue for String { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::try_from(self) } } impl IntoHeaderValue for usize { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::try_from(self.to_string()) } } impl IntoHeaderValue for i64 { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::try_from(self.to_string()) } } impl IntoHeaderValue for u64 { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::try_from(self.to_string()) } } impl IntoHeaderValue for i32 { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::try_from(self.to_string()) } } impl IntoHeaderValue for u32 { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::try_from(self.to_string()) } } impl IntoHeaderValue for Mime { type Error = InvalidHeaderValue; #[inline] fn try_into_value(self) -> Result { HeaderValue::from_str(self.as_ref()) } }