[][src]Struct mail_headers::HeaderName

pub struct HeaderName { /* fields omitted */ }

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]

pub fn as_ascii_str(&self) -> &'static SoftAsciiStr[src]

pub fn as_str(&self) -> &'static str[src]

Trait Implementations

impl HasHeaderName for HeaderName[src]

impl Clone for HeaderName[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for HeaderName[src]

impl Copy for HeaderName[src]

impl PartialEq<HeaderName> for HeaderName[src]

impl PartialEq<str> for HeaderName[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl PartialEq<SoftAsciiStr> for HeaderName[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Display for HeaderName[src]

impl Hash for HeaderName[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for HeaderName[src]

Auto Trait Implementations

impl Send for HeaderName

impl Sync for HeaderName

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T[src]