pub enum HeaderName<'x> {
Rfc(RfcHeader),
Other(Cow<'x, str>),
}
Variants§
Implementations§
Source§impl<'x> HeaderName<'x>
impl<'x> HeaderName<'x>
pub fn as_str(&self) -> &str
pub fn into_owned<'y>(&self) -> HeaderName<'y>
pub fn unwrap(self) -> String
Sourcepub fn is_mime_header(&self) -> bool
pub fn is_mime_header(&self) -> bool
Returns true if it is a MIME header.
Trait Implementations§
Source§impl<'x> Clone for HeaderName<'x>
impl<'x> Clone for HeaderName<'x>
Source§fn clone(&self) -> HeaderName<'x>
fn clone(&self) -> HeaderName<'x>
Returns a copy 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 moreSource§impl<'x> Debug for HeaderName<'x>
impl<'x> Debug for HeaderName<'x>
Source§impl<'de, 'x> Deserialize<'de> for HeaderName<'x>
impl<'de, 'x> Deserialize<'de> for HeaderName<'x>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'x> Hash for HeaderName<'x>
impl<'x> Hash for HeaderName<'x>
Source§impl PartialEq for HeaderName<'_>
impl PartialEq for HeaderName<'_>
Source§impl<'x> Serialize for HeaderName<'x>
impl<'x> Serialize for HeaderName<'x>
impl Eq for HeaderName<'_>
Auto Trait Implementations§
impl<'x> Freeze for HeaderName<'x>
impl<'x> RefUnwindSafe for HeaderName<'x>
impl<'x> Send for HeaderName<'x>
impl<'x> Sync for HeaderName<'x>
impl<'x> Unpin for HeaderName<'x>
impl<'x> UnwindSafe for HeaderName<'x>
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