pub trait TryIntoHeaderValue: Sized {
    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.

Required Associated Types§

The type returned in the event of a conversion error.

Required Methods§

Try to convert value to a HeaderValue.

Implementations on Foreign Types§

Implementors§