Skip to main content

ProvideApiKey

Trait ProvideApiKey 

Source
pub trait ProvideApiKey<Target: CredentialTarget>:
    Send
    + Sync
    + 'static {
    // Required method
    fn resolve_api_key<'life0, 'life1, 'async_trait>(
        &'life0 self,
        target: &'life1 Target,
    ) -> Pin<Box<dyn Future<Output = Result<Secret<String>, String>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Capability trait for API keys (e.g. Speechmatics, OpenAI, Anthropic, ElevenLabs).

Required Methods§

Source

fn resolve_api_key<'life0, 'life1, 'async_trait>( &'life0 self, target: &'life1 Target, ) -> Pin<Box<dyn Future<Output = Result<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".

Implementors§