pub trait IntoCredentialBuilder<CredentialBuilder: Clone + Debug> {
type Response;
type Error: Error;
// Required method
fn into_credential_builder(
self,
) -> Result<(Self::Response, CredentialBuilder), Self::Error>;
}
pub trait IntoCredentialBuilder<CredentialBuilder: Clone + Debug> {
type Response;
type Error: Error;
// Required method
fn into_credential_builder(
self,
) -> Result<(Self::Response, CredentialBuilder), Self::Error>;
}