Trait AppAuthClient

Source
pub trait AppAuthClient: HttpClient { }
Expand description

Marker trait to indicate that a HTTP client supports App authentication. App authentication works by adding a Authorization: Basic <base64(APP_KEY:APP_SECRET)> header to the HTTP request.

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§

Source§

impl AppAuthClient for AppAuthDefaultClient

Available on crate feature default_async_client only.
Source§

impl<T: AppAuthClient + Sync> AppAuthClient for T