(&self)
| 696 | |
| 697 | impl CliProviderRefreshStrategy { |
| 698 | fn as_str(&self) -> &'static str { |
| 699 | match self { |
| 700 | Self::Oauth2RefreshToken => "oauth2_refresh_token", |
| 701 | Self::Oauth2ClientCredentials => "oauth2_client_credentials", |
| 702 | Self::GoogleServiceAccountJwt => "google_service_account_jwt", |
| 703 | } |
| 704 | } |
| 705 | } |
| 706 | |
| 707 | impl OutputFormat { |
no outgoing calls