[][src]Enum mail::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

Implementations

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<'de> Deserialize<'de> 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 Serialize for TransferEncoding[src]

impl StructuralEq for TransferEncoding[src]

impl StructuralPartialEq for TransferEncoding[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T> HeaderTryFrom<T> for T[src]

impl<F, T> HeaderTryInto<T> for F where
    T: HeaderTryFrom<F>, 
[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.