Enum stream_httparse::header::HeaderKey [−][src]
Expand description
Allows the HeaderKey to take the form of a variety of different valid Types, mostly related to their lifetimes. This however also gives more control over how they are compared to each other, ignoring case in this case
use stream_httparse::header::HeaderKey; assert_eq!(HeaderKey::StrRef("TeSt"), HeaderKey::StrRef("test"));
Variants
StrRef(&'a str)
Stores the Key as a refernce to a String
Str(String)
Stores the Key as an owned String
Implementations
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for HeaderKey<'a>
impl<'a> Send for HeaderKey<'a>
impl<'a> Sync for HeaderKey<'a>
impl<'a> Unpin for HeaderKey<'a>
impl<'a> UnwindSafe for HeaderKey<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more