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