pub trait OidcHttpClient: Send + Sync {
// Required method
fn get_json<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
url: &'life1 str,
bearer_token: Option<&'life2 str>,
) -> Pin<Box<dyn Future<Output = Result<Value, OidcError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}Expand description
Minimal async HTTP client contract used by OIDC.
Required Methods§
Sourcefn get_json<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
url: &'life1 str,
bearer_token: Option<&'life2 str>,
) -> Pin<Box<dyn Future<Output = Result<Value, OidcError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn get_json<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
url: &'life1 str,
bearer_token: Option<&'life2 str>,
) -> Pin<Box<dyn Future<Output = Result<Value, OidcError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Fetch JSON from a URL, optionally using bearer authentication.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".