Trait lettre::smtp::authentication::IntoCredentials[][src]

pub trait IntoCredentials {
    fn into_credentials(self) -> Credentials;
}
Expand description

Convertable to user credentials

Required methods

fn into_credentials(self) -> Credentials[src]

Converts to a Credentials struct

Implementations on Foreign Types

impl<S: Into<String>, T: Into<String>> IntoCredentials for (S, T)[src]

Implementors