Enum stream_httparse::header::HeaderValue [−][src]
A single HeaderValue that can hold Data in a variety of forms allowing for easier and more flexible use
Variants
StrRef(&'a str)
Stores the Value as a reference to a String
Str(String)
Stores the Value as an owned String
NumberUsize(usize)
Stores the Value in its raw Number format
Implementations
impl<'a> HeaderValue<'a>
[src]
pub fn serialize(&self, buf: &mut Vec<u8>)
[src]
Serializes the Value into the given Buffer by appending the Data to it
pub fn to_string(&self) -> String
[src]
Turns the given Value, regardless of how it is stored, into an owned String
pub fn eq_ignore_case(&self, other: &Self) -> bool
[src]
Compares the Two values without case
Any number type in either of them immediately returns false
pub fn try_as_str_ref(&self) -> Option<&str>
[src]
Tries to return a reference to the underlying String, if it is a String, otherwise returns None
Trait Implementations
impl<'a> Clone for HeaderValue<'a>
[src]
fn clone(&self) -> HeaderValue<'a>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Debug for HeaderValue<'a>
[src]
impl<'a> PartialEq<HeaderValue<'a>> for HeaderValue<'a>
[src]
fn eq(&self, other: &HeaderValue<'a>) -> bool
[src]
fn ne(&self, other: &HeaderValue<'a>) -> bool
[src]
impl PartialEq<String> for HeaderValue<'_>
[src]
impl<'a> StructuralPartialEq for HeaderValue<'a>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for HeaderValue<'a>
impl<'a> Send for HeaderValue<'a>
impl<'a> Sync for HeaderValue<'a>
impl<'a> Unpin for HeaderValue<'a>
impl<'a> UnwindSafe for HeaderValue<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,