pub trait ProvideBasicAuth<Target: CredentialTarget>:
Send
+ Sync
+ 'static {
// Required method
fn resolve_basic_auth<'life0, 'life1, 'async_trait>(
&'life0 self,
target: &'life1 Target,
) -> Pin<Box<dyn Future<Output = Result<(String, Secret<String>), String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Capability trait for basic authentication (username and secret password).
Required Methods§
fn resolve_basic_auth<'life0, 'life1, 'async_trait>(
&'life0 self,
target: &'life1 Target,
) -> Pin<Box<dyn Future<Output = Result<(String, Secret<String>), String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".