[][src]Struct lettre::transport::smtp::AsyncSmtpTransportBuilder

pub struct AsyncSmtpTransportBuilder { /* fields omitted */ }

Contains client configuration

Implementations

impl AsyncSmtpTransportBuilder[src]

Builder for the SMTP AsyncSmtpTransport

pub fn hello_name(self, name: ClientId) -> Self[src]

Set the name used during EHLO

pub fn credentials(self, credentials: Credentials) -> Self[src]

Set the authentication mechanism to use

pub fn authentication(self, mechanisms: Vec<Mechanism>) -> Self[src]

Set the authentication mechanism to use

pub fn port(self, port: u16) -> Self[src]

Set the port to use

pub fn tls(self, tls: Tls) -> Self[src]

Set the TLS settings to use

pub fn build<C>(self) -> AsyncSmtpTransport<C> where
    C: AsyncSmtpConnector
[src]

Build the transport (with default pool if enabled)

Trait Implementations

impl Clone for AsyncSmtpTransportBuilder[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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,