[][src]Enum mail_headers::header_components::TransferEncoding

pub enum TransferEncoding {
    _7Bit,
    _8Bit,
    Binary,
    QuotedPrintable,
    Base64,
}

The TransferEnecoding header component mainly used by the ContentTransferEncodingHeader.

Variants

_7Bit
_8Bit
Binary
QuotedPrintable
Base64

Methods

impl TransferEncoding[src]

pub fn repr(&self) -> &SoftAsciiStr[src]

Trait Implementations

impl Clone for TransferEncoding[src]

impl Copy for TransferEncoding[src]

impl Debug for TransferEncoding[src]

impl EncodableInHeader for TransferEncoding[src]

impl Eq for TransferEncoding[src]

impl Hash for TransferEncoding[src]

impl PartialEq<TransferEncoding> for TransferEncoding[src]

impl StructuralEq for TransferEncoding[src]

impl StructuralPartialEq for TransferEncoding[src]

Auto Trait Implementations

impl RefUnwindSafe for TransferEncoding

impl Send for TransferEncoding

impl Sync for TransferEncoding

impl Unpin for TransferEncoding

impl UnwindSafe for TransferEncoding

Blanket Implementations

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

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

impl<T> BorrowMut<T> for T where
    T: ?Sized
[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]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.