Struct HeaderValue
pub struct HeaderValue(/* private fields */);Expand description
A HeaderValue represents the right hand side of a single name: value pair.
Implementations§
§impl HeaderValue
impl HeaderValue
pub const fn const_new(value: &'static str) -> HeaderValue
pub const fn const_new(value: &'static str) -> HeaderValue
Build a new header value from a &’static str at compile time
pub fn is_valid(&self) -> bool
pub fn is_valid(&self) -> bool
determine if this header contains no unsafe characters (\r, \n, \0)
since 0.3.12
pub fn as_str(&self) -> Option<&str>
pub fn as_str(&self) -> Option<&str>
Returns this header value as a &str if it is utf8, None
otherwise. If you need to convert non-utf8 bytes to a string
somehow, match directly on the HeaderValue as an enum and
handle that case. If you need a byte slice regardless of
whether it’s utf8, use the AsRef<[u8]> impl
Trait Implementations§
§impl AsRef<[u8]> for HeaderValue
impl AsRef<[u8]> for HeaderValue
§impl Clone for HeaderValue
impl Clone for HeaderValue
§fn clone(&self) -> HeaderValue
fn clone(&self) -> HeaderValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for HeaderValue
impl Debug for HeaderValue
§impl Display for HeaderValue
impl Display for HeaderValue
§impl From<&'static [u8]> for HeaderValue
impl From<&'static [u8]> for HeaderValue
§fn from(b: &'static [u8]) -> HeaderValue
fn from(b: &'static [u8]) -> HeaderValue
Converts to this type from the input type.
§impl From<&'static str> for HeaderValue
impl From<&'static str> for HeaderValue
§fn from(s: &'static str) -> HeaderValue
fn from(s: &'static str) -> HeaderValue
Converts to this type from the input type.
§impl From<Arguments<'_>> for HeaderValue
impl From<Arguments<'_>> for HeaderValue
§fn from(value: Arguments<'_>) -> HeaderValue
fn from(value: Arguments<'_>) -> HeaderValue
Converts to this type from the input type.
§impl From<Cow<'static, str>> for HeaderValue
impl From<Cow<'static, str>> for HeaderValue
§fn from(c: Cow<'static, str>) -> HeaderValue
fn from(c: Cow<'static, str>) -> HeaderValue
Converts to this type from the input type.
§impl From<HeaderValue> for HeaderValues
impl From<HeaderValue> for HeaderValues
§fn from(v: HeaderValue) -> HeaderValues
fn from(v: HeaderValue) -> HeaderValues
Converts to this type from the input type.
§impl From<String> for HeaderValue
impl From<String> for HeaderValue
§fn from(s: String) -> HeaderValue
fn from(s: String) -> HeaderValue
Converts to this type from the input type.
§impl From<Vec<u8>> for HeaderValue
impl From<Vec<u8>> for HeaderValue
§fn from(v: Vec<u8>) -> HeaderValue
fn from(v: Vec<u8>) -> HeaderValue
Converts to this type from the input type.
§impl From<i32> for HeaderValue
impl From<i32> for HeaderValue
§fn from(value: i32) -> HeaderValue
fn from(value: i32) -> HeaderValue
Converts to this type from the input type.
§impl From<i64> for HeaderValue
impl From<i64> for HeaderValue
§fn from(value: i64) -> HeaderValue
fn from(value: i64) -> HeaderValue
Converts to this type from the input type.
§impl From<u16> for HeaderValue
impl From<u16> for HeaderValue
§fn from(value: u16) -> HeaderValue
fn from(value: u16) -> HeaderValue
Converts to this type from the input type.
§impl From<u32> for HeaderValue
impl From<u32> for HeaderValue
§fn from(value: u32) -> HeaderValue
fn from(value: u32) -> HeaderValue
Converts to this type from the input type.
§impl From<u64> for HeaderValue
impl From<u64> for HeaderValue
§fn from(value: u64) -> HeaderValue
fn from(value: u64) -> HeaderValue
Converts to this type from the input type.
§impl From<usize> for HeaderValue
impl From<usize> for HeaderValue
§fn from(value: usize) -> HeaderValue
fn from(value: usize) -> HeaderValue
Converts to this type from the input type.
§impl Ord for HeaderValue
impl Ord for HeaderValue
§impl PartialEq<&[u8]> for HeaderValue
impl PartialEq<&[u8]> for HeaderValue
§impl PartialEq<&String> for HeaderValue
impl PartialEq<&String> for HeaderValue
§impl PartialEq<&str> for HeaderValue
impl PartialEq<&str> for HeaderValue
§impl PartialEq<[u8]> for &HeaderValue
impl PartialEq<[u8]> for &HeaderValue
§impl PartialEq<[u8]> for HeaderValue
impl PartialEq<[u8]> for HeaderValue
§impl PartialEq<HeaderValue> for HeaderValues
impl PartialEq<HeaderValue> for HeaderValues
§impl PartialEq<String> for &HeaderValue
impl PartialEq<String> for &HeaderValue
§impl PartialEq<String> for HeaderValue
impl PartialEq<String> for HeaderValue
§impl PartialEq<str> for &HeaderValue
impl PartialEq<str> for &HeaderValue
§impl PartialEq<str> for HeaderValue
impl PartialEq<str> for HeaderValue
§impl PartialEq for HeaderValue
impl PartialEq for HeaderValue
§impl PartialOrd for HeaderValue
impl PartialOrd for HeaderValue
impl Eq for HeaderValue
impl StructuralPartialEq for HeaderValue
Auto Trait Implementations§
impl Freeze for HeaderValue
impl RefUnwindSafe for HeaderValue
impl Send for HeaderValue
impl Sync for HeaderValue
impl Unpin for HeaderValue
impl UnsafeUnpin for HeaderValue
impl UnwindSafe for HeaderValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.