[][src]Enum mda::DeliveryDurability

pub enum DeliveryDurability {
    FileAndDirSync,
    FileSyncOnly,
}

The method to use to try to guarantee durable email delivery.

Variants

FileAndDirSync

Perform both file and directory syncing during delivery. This is the default delivery durability method.

FileSyncOnly

Perform only file sync during delivery. This method is potentially much faster, and is used by many existing MDAs, but, depending on the used filesystem, may not provide the required delivery durability guarantees.

Trait Implementations

impl Clone for DeliveryDurability[src]

impl PartialEq<DeliveryDurability> for DeliveryDurability[src]

impl Copy for DeliveryDurability[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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