pub trait AuthClientExt {
// Required method
fn auth_new(&self) -> AuthClient;
}Expand description
Extension trait for Client to provide access to the AuthClient.
Required Methods§
Sourcefn auth_new(&self) -> AuthClient
fn auth_new(&self) -> AuthClient
Creates a new AuthClient instance.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".