[−][src]Struct mail_headers::HeaderName
Note: Normally you will never have the need to create a HeaderName instance by
yourself (except maybe for testing). At last as long as you use def_header!
for defining custom Headers, which is highly recommended
Methods
impl HeaderName[src]
pub fn new(name: &'static SoftAsciiStr) -> Result<Self, InvalidHeaderName>[src]
Be aware, that this library only accepts header names with a letter case,
that any first character of an alphanumeric part of a header name has to
be uppercase and all other lowercase. E.g. Message-Id is accepted but
Message-ID is rejected, even through both are semantically the same.
This frees us from doing either case insensitive comparison/hash wrt. hash map
lookups, or converting all names to upper/lower case.
pub fn from_ascii_unchecked<B: ?Sized>(name: &'static B) -> HeaderName where
B: AsRef<str>, [src]
B: AsRef<str>,
pub fn as_ascii_str(&self) -> &'static SoftAsciiStr[src]
pub fn as_str(&self) -> &'static str[src]
Trait Implementations
impl Clone for HeaderName[src]
fn clone(&self) -> HeaderName[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for HeaderName[src]
impl Debug for HeaderName[src]
impl Display for HeaderName[src]
impl Eq for HeaderName[src]
impl HasHeaderName for HeaderName[src]
fn get_name(&self) -> HeaderName[src]
impl Hash for HeaderName[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<HeaderName> for HeaderName[src]
fn eq(&self, other: &HeaderName) -> bool[src]
fn ne(&self, other: &HeaderName) -> bool[src]
impl PartialEq<SoftAsciiStr> for HeaderName[src]
fn eq(&self, other: &SoftAsciiStr) -> bool[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialEq<str> for HeaderName[src]
impl StructuralEq for HeaderName[src]
impl StructuralPartialEq for HeaderName[src]
Auto Trait Implementations
impl RefUnwindSafe for HeaderName
impl Send for HeaderName
impl Sync for HeaderName
impl Unpin for HeaderName
impl UnwindSafe for HeaderName
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,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Erased for 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.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
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.
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>,