Trait actix_http::http::header::IntoHeaderValue [−][src]
pub trait IntoHeaderValue: Sized { type Error: Into<HttpError>; fn try_into_value(self) -> Result<HeaderValue, Self::Error>; }
A trait for any object that can be Converted to a HeaderValue
Associated Types
Loading content...Required methods
fn try_into_value(self) -> Result<HeaderValue, Self::Error>
[src]
Try to convert value to a HeaderValue.