pub trait ProvideCredentials: Send + Sync + Debug {
    fn provide_credentials<'a>(&'a self) -> ProvideCredentials<'a>Notable traits for ProvideCredentials<'_>impl Future for ProvideCredentials<'_>    type Output = Result;
    where
        Self: 'a
; }
Expand description

Asynchronous Credentials Provider

Required Methods

Returns a future that provides credentials.

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Implementations on Foreign Types

Implementors