Trait actix_web::http::header::IntoHeaderValue [−][src]
pub trait IntoHeaderValue {
type Error: Into<Error>;
fn try_into_value(self) -> Result<HeaderValue, Self::Error>;
}
Expand description
An interface for types that can be converted into a HeaderValue
.
Associated Types
Required methods
fn try_into_value(self) -> Result<HeaderValue, Self::Error>
fn try_into_value(self) -> Result<HeaderValue, Self::Error>
Try to convert value to a HeaderValue.