Struct http::header::HeaderValue [−][src]
pub struct HeaderValue { /* fields omitted */ }
Represents an HTTP header field value.
In practice, HTTP header field values are usually valid ASCII. However, the HTTP spec allows for a header value to contain opaque bytes as well. In this case, the header field value is not able to be represented as a string.
To handle this, the HeaderValue
is useable as a type and can be compared
with strings and implements Debug
. A to_str
fn is provided that returns
an Err
if the header value contains non visible ascii characters.
Methods
impl HeaderValue
[src]
impl HeaderValue
pub fn from_static(src: &'static str) -> HeaderValue
[src]
pub fn from_static(src: &'static str) -> HeaderValue
Convert a static string to a HeaderValue
.
This function will not perform any copying, however the string is checked to ensure that no invalid characters are present. Only visible ASCII characters (32-127) are permitted.
Panics
This function panics if the argument contains invalid header value characters.
Examples
let val = HeaderValue::from_static("hello"); assert_eq!(val, "hello");
pub fn from_str(src: &str) -> Result<HeaderValue, InvalidHeaderValue>
[src]
pub fn from_str(src: &str) -> Result<HeaderValue, InvalidHeaderValue>
Attempt to convert a string to a HeaderValue
.
If the argument contains invalid header value characters, an error is
returned. Only visible ASCII characters (32-127) are permitted. Use
from_bytes
to create a HeaderValue
that includes opaque octets
(128-255).
This function is intended to be replaced in the future by a TryFrom
implementation once the trait is stabilized in std.
Examples
let val = HeaderValue::from_str("hello").unwrap(); assert_eq!(val, "hello");
An invalid value
let val = HeaderValue::from_str("\n"); assert!(val.is_err());
pub fn from_name(name: HeaderName) -> HeaderValue
[src]
pub fn from_name(name: HeaderName) -> HeaderValue
Converts a HeaderName into a HeaderValue
Since every valid HeaderName is a valid HeaderValue this is done infallibly.
Examples
let val = HeaderValue::from_name(ACCEPT); assert_eq!(val, HeaderValue::from_bytes(b"accept").unwrap());
pub fn from_bytes(src: &[u8]) -> Result<HeaderValue, InvalidHeaderValue>
[src]
pub fn from_bytes(src: &[u8]) -> Result<HeaderValue, InvalidHeaderValue>
Attempt to convert a byte slice to a HeaderValue
.
If the argument contains invalid header value bytes, an error is returned. Only byte values between 32 and 255 (inclusive) are permitted, excluding byte 127 (DEL).
This function is intended to be replaced in the future by a TryFrom
implementation once the trait is stabilized in std.
Examples
let val = HeaderValue::from_bytes(b"hello\xfa").unwrap(); assert_eq!(val, &b"hello\xfa"[..]);
An invalid value
let val = HeaderValue::from_bytes(b"\n"); assert!(val.is_err());
Attempt to convert a Bytes
buffer to a HeaderValue
.
If the argument contains invalid header value bytes, an error is returned. Only byte values between 32 and 255 (inclusive) are permitted, excluding byte 127 (DEL).
This function is intended to be replaced in the future by a TryFrom
implementation once the trait is stabilized in std.
Convert a Bytes
directly into a HeaderValue
without validating.
This function does NOT validate that illegal bytes are not contained within the buffer.
pub fn to_str(&self) -> Result<&str, ToStrError>
[src]
pub fn to_str(&self) -> Result<&str, ToStrError>
Yields a &str
slice if the HeaderValue
only contains visible ASCII
chars.
This function will perform a scan of the header value, checking all the characters.
Examples
let val = HeaderValue::from_static("hello"); assert_eq!(val.to_str().unwrap(), "hello");
pub fn len(&self) -> usize
[src]
pub fn len(&self) -> usize
Returns the length of self
.
This length is in bytes.
Examples
let val = HeaderValue::from_static("hello"); assert_eq!(val.len(), 5);
pub fn is_empty(&self) -> bool
[src]
pub fn is_empty(&self) -> bool
Returns true if the HeaderValue
has a length of zero bytes.
Examples
let val = HeaderValue::from_static(""); assert!(val.is_empty()); let val = HeaderValue::from_static("hello"); assert!(!val.is_empty());
pub fn as_bytes(&self) -> &[u8]
[src]
pub fn as_bytes(&self) -> &[u8]
Converts a HeaderValue
to a byte slice.
Examples
let val = HeaderValue::from_static("hello"); assert_eq!(val.as_bytes(), b"hello");
pub fn set_sensitive(&mut self, val: bool)
[src]
pub fn set_sensitive(&mut self, val: bool)
Mark that the header value represents sensitive information.
Examples
let mut val = HeaderValue::from_static("my secret"); val.set_sensitive(true); assert!(val.is_sensitive()); val.set_sensitive(false); assert!(!val.is_sensitive());
pub fn is_sensitive(&self) -> bool
[src]
pub fn is_sensitive(&self) -> bool
Returns true
if the value represents sensitive data.
Sensitive data could represent passwords or other data that should not
be stored on disk or in memory. This setting can be used by components
like caches to avoid storing the value. HPACK encoders must set the
header field to never index when is_sensitive
returns true.
Note that sensitivity is not factored into equality or ordering.
Examples
let mut val = HeaderValue::from_static("my secret"); val.set_sensitive(true); assert!(val.is_sensitive()); val.set_sensitive(false); assert!(!val.is_sensitive());
Trait Implementations
impl Clone for HeaderValue
[src]
impl Clone for HeaderValue
fn clone(&self) -> HeaderValue
[src]
fn clone(&self) -> HeaderValue
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Hash for HeaderValue
[src]
impl Hash for HeaderValue
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl AsRef<[u8]> for HeaderValue
[src]
impl AsRef<[u8]> for HeaderValue
impl Debug for HeaderValue
[src]
impl Debug for HeaderValue
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl From<HeaderName> for HeaderValue
[src]
impl From<HeaderName> for HeaderValue
fn from(h: HeaderName) -> HeaderValue
[src]
fn from(h: HeaderName) -> HeaderValue
Performs the conversion.
impl From<u16> for HeaderValue
[src]
impl From<u16> for HeaderValue
fn from(num: u16) -> HeaderValue
[src]
fn from(num: u16) -> HeaderValue
Performs the conversion.
impl HttpTryFrom<u16> for HeaderValue
[src]
impl HttpTryFrom<u16> for HeaderValue
type Error = Never
Associated error with the conversion this implementation represents.
fn try_from(num: u16) -> Result<Self, Self::Error>
[src]
fn try_from(num: u16) -> Result<Self, Self::Error>
impl From<i16> for HeaderValue
[src]
impl From<i16> for HeaderValue
fn from(num: i16) -> HeaderValue
[src]
fn from(num: i16) -> HeaderValue
Performs the conversion.
impl HttpTryFrom<i16> for HeaderValue
[src]
impl HttpTryFrom<i16> for HeaderValue
type Error = Never
Associated error with the conversion this implementation represents.
fn try_from(num: i16) -> Result<Self, Self::Error>
[src]
fn try_from(num: i16) -> Result<Self, Self::Error>
impl From<u32> for HeaderValue
[src]
impl From<u32> for HeaderValue
fn from(num: u32) -> HeaderValue
[src]
fn from(num: u32) -> HeaderValue
Performs the conversion.
impl HttpTryFrom<u32> for HeaderValue
[src]
impl HttpTryFrom<u32> for HeaderValue
type Error = Never
Associated error with the conversion this implementation represents.
fn try_from(num: u32) -> Result<Self, Self::Error>
[src]
fn try_from(num: u32) -> Result<Self, Self::Error>
impl From<i32> for HeaderValue
[src]
impl From<i32> for HeaderValue
fn from(num: i32) -> HeaderValue
[src]
fn from(num: i32) -> HeaderValue
Performs the conversion.
impl HttpTryFrom<i32> for HeaderValue
[src]
impl HttpTryFrom<i32> for HeaderValue
type Error = Never
Associated error with the conversion this implementation represents.
fn try_from(num: i32) -> Result<Self, Self::Error>
[src]
fn try_from(num: i32) -> Result<Self, Self::Error>
impl From<u64> for HeaderValue
[src]
impl From<u64> for HeaderValue
fn from(num: u64) -> HeaderValue
[src]
fn from(num: u64) -> HeaderValue
Performs the conversion.
impl HttpTryFrom<u64> for HeaderValue
[src]
impl HttpTryFrom<u64> for HeaderValue
type Error = Never
Associated error with the conversion this implementation represents.
fn try_from(num: u64) -> Result<Self, Self::Error>
[src]
fn try_from(num: u64) -> Result<Self, Self::Error>
impl From<i64> for HeaderValue
[src]
impl From<i64> for HeaderValue
fn from(num: i64) -> HeaderValue
[src]
fn from(num: i64) -> HeaderValue
Performs the conversion.
impl HttpTryFrom<i64> for HeaderValue
[src]
impl HttpTryFrom<i64> for HeaderValue
type Error = Never
Associated error with the conversion this implementation represents.
fn try_from(num: i64) -> Result<Self, Self::Error>
[src]
fn try_from(num: i64) -> Result<Self, Self::Error>
impl From<usize> for HeaderValue
[src]
impl From<usize> for HeaderValue
fn from(num: usize) -> HeaderValue
[src]
fn from(num: usize) -> HeaderValue
Performs the conversion.
impl HttpTryFrom<usize> for HeaderValue
[src]
impl HttpTryFrom<usize> for HeaderValue
type Error = Never
Associated error with the conversion this implementation represents.
fn try_from(num: usize) -> Result<Self, Self::Error>
[src]
fn try_from(num: usize) -> Result<Self, Self::Error>
impl From<isize> for HeaderValue
[src]
impl From<isize> for HeaderValue
fn from(num: isize) -> HeaderValue
[src]
fn from(num: isize) -> HeaderValue
Performs the conversion.
impl HttpTryFrom<isize> for HeaderValue
[src]
impl HttpTryFrom<isize> for HeaderValue
type Error = Never
Associated error with the conversion this implementation represents.
fn try_from(num: isize) -> Result<Self, Self::Error>
[src]
fn try_from(num: isize) -> Result<Self, Self::Error>
impl FromStr for HeaderValue
[src]
impl FromStr for HeaderValue
type Err = InvalidHeaderValue
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<HeaderValue, Self::Err>
[src]
fn from_str(s: &str) -> Result<HeaderValue, Self::Err>
Parses a string s
to return a value of this type. Read more
impl From<HeaderValue> for Bytes
[src]
impl From<HeaderValue> for Bytes
fn from(value: HeaderValue) -> Bytes
[src]
fn from(value: HeaderValue) -> Bytes
Performs the conversion.
impl<'a> HttpTryFrom<&'a str> for HeaderValue
[src]
impl<'a> HttpTryFrom<&'a str> for HeaderValue
type Error = InvalidHeaderValue
Associated error with the conversion this implementation represents.
fn try_from(t: &'a str) -> Result<Self, Self::Error>
[src]
fn try_from(t: &'a str) -> Result<Self, Self::Error>
impl<'a> HttpTryFrom<&'a [u8]> for HeaderValue
[src]
impl<'a> HttpTryFrom<&'a [u8]> for HeaderValue
type Error = InvalidHeaderValue
Associated error with the conversion this implementation represents.
fn try_from(t: &'a [u8]) -> Result<Self, Self::Error>
[src]
fn try_from(t: &'a [u8]) -> Result<Self, Self::Error>
impl HttpTryFrom<Bytes> for HeaderValue
[src]
impl HttpTryFrom<Bytes> for HeaderValue
type Error = InvalidHeaderValueBytes
Associated error with the conversion this implementation represents.
fn try_from(bytes: Bytes) -> Result<Self, Self::Error>
[src]
fn try_from(bytes: Bytes) -> Result<Self, Self::Error>
impl HttpTryFrom<HeaderName> for HeaderValue
[src]
impl HttpTryFrom<HeaderName> for HeaderValue
type Error = InvalidHeaderValue
Associated error with the conversion this implementation represents.
fn try_from(name: HeaderName) -> Result<Self, Self::Error>
[src]
fn try_from(name: HeaderName) -> Result<Self, Self::Error>
impl PartialEq for HeaderValue
[src]
impl PartialEq for HeaderValue
fn eq(&self, other: &HeaderValue) -> bool
[src]
fn eq(&self, other: &HeaderValue) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl Eq for HeaderValue
[src]
impl Eq for HeaderValue
impl PartialOrd for HeaderValue
[src]
impl PartialOrd for HeaderValue
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for HeaderValue
[src]
impl Ord for HeaderValue
fn cmp(&self, other: &Self) -> Ordering
[src]
fn cmp(&self, other: &Self) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl PartialEq<str> for HeaderValue
[src]
impl PartialEq<str> for HeaderValue
fn eq(&self, other: &str) -> bool
[src]
fn eq(&self, other: &str) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl PartialEq<[u8]> for HeaderValue
[src]
impl PartialEq<[u8]> for HeaderValue
fn eq(&self, other: &[u8]) -> bool
[src]
fn eq(&self, other: &[u8]) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl PartialOrd<str> for HeaderValue
[src]
impl PartialOrd<str> for HeaderValue
fn partial_cmp(&self, other: &str) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &str) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl PartialOrd<[u8]> for HeaderValue
[src]
impl PartialOrd<[u8]> for HeaderValue
fn partial_cmp(&self, other: &[u8]) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &[u8]) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl PartialEq<HeaderValue> for str
[src]
impl PartialEq<HeaderValue> for str
fn eq(&self, other: &HeaderValue) -> bool
[src]
fn eq(&self, other: &HeaderValue) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl PartialEq<HeaderValue> for [u8]
[src]
impl PartialEq<HeaderValue> for [u8]
fn eq(&self, other: &HeaderValue) -> bool
[src]
fn eq(&self, other: &HeaderValue) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl PartialOrd<HeaderValue> for str
[src]
impl PartialOrd<HeaderValue> for str
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl PartialOrd<HeaderValue> for [u8]
[src]
impl PartialOrd<HeaderValue> for [u8]
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl PartialEq<String> for HeaderValue
[src]
impl PartialEq<String> for HeaderValue
fn eq(&self, other: &String) -> bool
[src]
fn eq(&self, other: &String) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl PartialOrd<String> for HeaderValue
[src]
impl PartialOrd<String> for HeaderValue
fn partial_cmp(&self, other: &String) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &String) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl PartialEq<HeaderValue> for String
[src]
impl PartialEq<HeaderValue> for String
fn eq(&self, other: &HeaderValue) -> bool
[src]
fn eq(&self, other: &HeaderValue) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl PartialOrd<HeaderValue> for String
[src]
impl PartialOrd<HeaderValue> for String
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<'a> PartialEq<HeaderValue> for &'a HeaderValue
[src]
impl<'a> PartialEq<HeaderValue> for &'a HeaderValue
fn eq(&self, other: &HeaderValue) -> bool
[src]
fn eq(&self, other: &HeaderValue) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'a> PartialOrd<HeaderValue> for &'a HeaderValue
[src]
impl<'a> PartialOrd<HeaderValue> for &'a HeaderValue
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<'a, T: ?Sized> PartialEq<&'a T> for HeaderValue where
HeaderValue: PartialEq<T>,
[src]
impl<'a, T: ?Sized> PartialEq<&'a T> for HeaderValue where
HeaderValue: PartialEq<T>,
fn eq(&self, other: &&'a T) -> bool
[src]
fn eq(&self, other: &&'a T) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'a, T: ?Sized> PartialOrd<&'a T> for HeaderValue where
HeaderValue: PartialOrd<T>,
[src]
impl<'a, T: ?Sized> PartialOrd<&'a T> for HeaderValue where
HeaderValue: PartialOrd<T>,
fn partial_cmp(&self, other: &&'a T) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &&'a T) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<'a> PartialEq<HeaderValue> for &'a str
[src]
impl<'a> PartialEq<HeaderValue> for &'a str
fn eq(&self, other: &HeaderValue) -> bool
[src]
fn eq(&self, other: &HeaderValue) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'a> PartialOrd<HeaderValue> for &'a str
[src]
impl<'a> PartialOrd<HeaderValue> for &'a str
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &HeaderValue) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl HttpTryFrom<HeaderValue> for HeaderValue
[src]
impl HttpTryFrom<HeaderValue> for HeaderValue
Auto Trait Implementations
impl Send for HeaderValue
impl Send for HeaderValue
impl Sync for HeaderValue
impl Sync for HeaderValue