kind_openai

Trait AuthTokenProvider

Source
pub trait AuthTokenProvider: Clone {
    // Required method
    async fn resolve(&self) -> Option<String>;
}
Expand description

Any type that can provide a bearer auth token.

Required Methods§

Source

async fn resolve(&self) -> Option<String>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§