Skip to main content

TryIntoHeaderValue

Trait TryIntoHeaderValue 

Source
pub trait TryIntoHeaderValue: Sized {
    type Error: Into<Error>;

    // Required method
    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ยง

Source

type Error: Into<Error>

The type returned in the event of a conversion error.

Required Methodsยง

Source

fn try_into_value(self) -> Result<HeaderValue, Self::Error>

Try to convert value to a HeaderValue.

Dyn Compatibilityยง

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Typesยง

Sourceยง

impl TryIntoHeaderValue for &[u8]

Sourceยง

impl TryIntoHeaderValue for &str

Sourceยง

impl TryIntoHeaderValue for Mime

Sourceยง

impl TryIntoHeaderValue for String

Sourceยง

impl TryIntoHeaderValue for Vec<u8>

Sourceยง

impl TryIntoHeaderValue for i32

Sourceยง

impl TryIntoHeaderValue for i64

Sourceยง

impl TryIntoHeaderValue for u32

Sourceยง

impl TryIntoHeaderValue for u64

Sourceยง

impl TryIntoHeaderValue for usize

Implementorsยง

Sourceยง

impl TryIntoHeaderValue for &HeaderValue

Sourceยง

impl TryIntoHeaderValue for Accept

Sourceยง

impl TryIntoHeaderValue for AcceptCharset

Sourceยง

impl TryIntoHeaderValue for AcceptEncoding

Sourceยง

impl TryIntoHeaderValue for AcceptLanguage

Sourceยง

impl TryIntoHeaderValue for Allow

Sourceยง

impl TryIntoHeaderValue for Bytes

Sourceยง

impl TryIntoHeaderValue for CacheControl

Sourceยง

impl TryIntoHeaderValue for ContentDisposition

Sourceยง

impl TryIntoHeaderValue for ContentEncoding

Sourceยง

impl TryIntoHeaderValue for ContentLanguage

Sourceยง

impl TryIntoHeaderValue for ContentLength

Sourceยง

impl TryIntoHeaderValue for ContentRange

Sourceยง

impl TryIntoHeaderValue for ContentRangeSpec

Sourceยง

impl TryIntoHeaderValue for ContentType

Sourceยง

impl TryIntoHeaderValue for Date

Sourceยง

impl TryIntoHeaderValue for ETag

Sourceยง

impl TryIntoHeaderValue for EntityTag

Sourceยง

impl TryIntoHeaderValue for Expires

Sourceยง

impl TryIntoHeaderValue for HeaderValue

Sourceยง

impl TryIntoHeaderValue for HttpDate

Sourceยง

impl TryIntoHeaderValue for IfMatch

Sourceยง

impl TryIntoHeaderValue for IfModifiedSince

Sourceยง

impl TryIntoHeaderValue for IfNoneMatch

Sourceยง

impl TryIntoHeaderValue for IfRange

Sourceยง

impl TryIntoHeaderValue for IfUnmodifiedSince

Sourceยง

impl TryIntoHeaderValue for LastModified

Sourceยง

impl TryIntoHeaderValue for Range