Trait IntoCredentials

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

Convertible to user credentials

Required Methods§

Source

fn into_credentials(self) -> Credentials

Converts to a Credentials struct

Implementations on Foreign Types§

Source§

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

Implementors§