Trait NoauthClient

Source
pub trait NoauthClient: HttpClient { }
Expand description

Marker trait to indicate that a HTTP client supports unauthenticated routes.

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 NoauthClient for NoauthDefaultClient

Available on crate feature default_async_client only.
Source§

impl<T: NoauthClient + Sync> NoauthClient for T