pub trait TokenProvider: Send + Sync {
// Required method
fn token(&self) -> String;
}Expand description
Provides access tokens for VertexAI authentication.
Implement this trait to supply dynamically refreshed tokens.
The default implementation reads GOOGLE_ACCESS_TOKEN from the environment.